Add coding directive - toot - Unnamed repository; edit this file 'description' … | |
Log | |
Files | |
Refs | |
LICENSE | |
--- | |
commit d21e45899c619f140ab0d1957003d7e4fa2fd8b4 | |
parent 7e31c57a63b21603233a57384ee82097a4e4ff2f | |
Author: Ivan Habunek <[email protected]> | |
Date: Sat, 15 Apr 2017 14:53:08 +0200 | |
Add coding directive | |
Diffstat: | |
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(-) | |
--- | |
diff --git a/tests/__init__.py b/tests/__init__.py | |
diff --git 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 | |
@@ -1,3 +1,5 @@ | |
+# -*- coding: utf-8 -*- | |
+ | |
import logging | |
import requests | |
diff --git 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 | |
@@ -1,3 +1,5 @@ | |
+# -*- coding: utf-8 -*- | |
+# | |
from __future__ import print_function | |
import os |