Add coding directive - toot - Unnamed repository; edit this file 'description' to name the repository.
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) LICENSE
---
(DIR) commit d21e45899c619f140ab0d1957003d7e4fa2fd8b4
(DIR) parent 7e31c57a63b21603233a57384ee82097a4e4ff2f
(HTM) Author: Ivan Habunek <ivan@habunek.com>
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(-)
---
(DIR) diff --git a/tests/__init__.py b/tests/__init__.py
(DIR) 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
(DIR) diff --git a/toot/__init__.py b/toot/__init__.py
@@ -1,3 +1,5 @@
+# -*- coding: utf-8 -*-
+
import logging
import requests
(DIR) diff --git a/toot/config.py b/toot/config.py
@@ -1,3 +1,5 @@
+# -*- coding: utf-8 -*-
+
import os
from . import User, App
(DIR) diff --git a/toot/console.py b/toot/console.py
@@ -1,3 +1,5 @@
+# -*- coding: utf-8 -*-
+#
from __future__ import print_function
import os