From d21e45899c619f140ab0d1957003d7e4fa2fd8b4 Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Sat, 15 Apr 2017 14:53:08 +0200 Subject: [PATCH] Add coding directive --- tests/__init__.py | 0 tests/test_api.py | 2 +- toot/__init__.py | 2 ++ toot/config.py | 2 ++ toot/console.py | 2 ++ 5 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 tests/__init__.py diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/test_api.py b/tests/test_api.py index 0c0adc8..73eafb7 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -1,4 +1,4 @@ -# import pytest +# -*- coding: utf-8 -*- import requests from toot import App, User, create_app, login, CLIENT_NAME, CLIENT_WEB, SCOPES diff --git a/toot/__init__.py b/toot/__init__.py index d3c7e7f..0b51e2c 100644 --- a/toot/__init__.py +++ b/toot/__init__.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- + import logging import requests diff --git a/toot/config.py b/toot/config.py index 8fbe447..8d36527 100644 --- a/toot/config.py +++ b/toot/config.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- + import os from . import User, App diff --git a/toot/console.py b/toot/console.py index baa54fb..dfb5855 100644 --- a/toot/console.py +++ b/toot/console.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- +# from __future__ import print_function import os