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