aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2019-03-18 14:56:13 +0000
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2019-03-18 14:56:13 +0000
commit3b3b17a1b76c1c7a4f7b7954cafdad4bb4f1b868 (patch)
treea78ae8e176f9fcb1a3dd635abc11b890857c7501 /app
parentadd registration (diff)
downloadAnnotateChange-3b3b17a1b76c1c7a4f7b7954cafdad4bb4f1b868.tar.gz
AnnotateChange-3b3b17a1b76c1c7a4f7b7954cafdad4bb4f1b868.zip
add file encoding
Diffstat (limited to 'app')
-rw-r--r--app/__init__.py2
-rw-r--r--app/config.py2
-rw-r--r--app/forms.py1
-rw-r--r--app/models.py1
-rw-r--r--app/routes.py1
5 files changed, 7 insertions, 0 deletions
diff --git a/app/__init__.py b/app/__init__.py
index ae7e240..aaeb5a0 100644
--- a/app/__init__.py
+++ b/app/__init__.py
@@ -1,3 +1,5 @@
+# -*- coding: utf-8 -*-
+
__version__ = "0.1.0"
from flask import Flask
diff --git a/app/config.py b/app/config.py
index c33cf25..b03020f 100644
--- a/app/config.py
+++ b/app/config.py
@@ -1,3 +1,5 @@
+# -*- coding: utf-8 -*-
+
import os
# TODO: change these things to an instance path
diff --git a/app/forms.py b/app/forms.py
index 75de178..96f23ef 100644
--- a/app/forms.py
+++ b/app/forms.py
@@ -1,3 +1,4 @@
+# -*- coding: utf-8 -*-
from flask_wtf import FlaskForm
diff --git a/app/models.py b/app/models.py
index b607748..0483ff7 100644
--- a/app/models.py
+++ b/app/models.py
@@ -1,3 +1,4 @@
+# -*- coding: utf-8 -*-
import datetime
diff --git a/app/routes.py b/app/routes.py
index 44600db..804b54d 100644
--- a/app/routes.py
+++ b/app/routes.py
@@ -1,3 +1,4 @@
+# -*- coding: utf-8 -*-
from flask import render_template, flash, redirect, url_for, request