From 2d8791e629bc59b9206c82c0704fcc0ce9ac5c6f Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Sat, 31 Dec 2022 09:24:08 +0100 Subject: [PATCH] Remove coding directives, no longer needed --- docs/conf.py | 2 -- tests/test_api.py | 1 - tests/test_auth.py | 2 -- tests/test_console.py | 1 - toot/__init__.py | 2 -- toot/api.py | 2 -- toot/auth.py | 2 -- toot/commands.py | 2 -- toot/console.py | 2 -- toot/output.py | 2 -- toot/utils/__init__.py | 2 -- 11 files changed, 20 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index f610945..174d568 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- - from datetime import datetime # -- Project information ----------------------------------------------------- diff --git a/tests/test_api.py b/tests/test_api.py index de3da73..65f815a 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- import pytest from unittest import mock diff --git a/tests/test_auth.py b/tests/test_auth.py index ef16204..e8e3301 100644 --- a/tests/test_auth.py +++ b/tests/test_auth.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- - from toot import App, User, api, config, auth from tests.utils import retval diff --git a/tests/test_console.py b/tests/test_console.py index ae61ada..f59cf5f 100644 --- a/tests/test_console.py +++ b/tests/test_console.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- import io import pytest import re diff --git a/toot/__init__.py b/toot/__init__.py index 2dbddfd..daa953b 100644 --- a/toot/__init__.py +++ b/toot/__init__.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- - from collections import namedtuple __version__ = '0.32.1' diff --git a/toot/api.py b/toot/api.py index 9e34c83..478949e 100644 --- a/toot/api.py +++ b/toot/api.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- - import re import uuid diff --git a/toot/auth.py b/toot/auth.py index 1b4a327..05b61b6 100644 --- a/toot/auth.py +++ b/toot/auth.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- - import sys import webbrowser diff --git a/toot/commands.py b/toot/commands.py index 5287946..c34cd83 100644 --- a/toot/commands.py +++ b/toot/commands.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- - import sys import platform diff --git a/toot/console.py b/toot/console.py index b0d007e..ac81224 100644 --- a/toot/console.py +++ b/toot/console.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- - import logging import os import re diff --git a/toot/output.py b/toot/output.py index b037492..73877a4 100644 --- a/toot/output.py +++ b/toot/output.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- - import os import re import sys diff --git a/toot/utils/__init__.py b/toot/utils/__init__.py index 40e0daf..c76e65f 100644 --- a/toot/utils/__init__.py +++ b/toot/utils/__init__.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- - import os import re import socket