From 3b3b17a1b76c1c7a4f7b7954cafdad4bb4f1b868 Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Mon, 18 Mar 2019 14:56:13 +0000 Subject: add file encoding --- app/__init__.py | 2 ++ app/config.py | 2 ++ app/forms.py | 1 + app/models.py | 1 + app/routes.py | 1 + 5 files changed, 7 insertions(+) (limited to 'app') 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 -- cgit v1.2.3