From bb6f52d23f26a163a9c4fc49ee4fe749b9e3af7c Mon Sep 17 00:00:00 2001 From: Lucas Hoffmann Date: Tue, 19 Jun 2018 14:43:35 +0200 Subject: Remove old __future__ imports They are not needed for python >= 3.0. --- alot/__main__.py | 2 -- alot/account.py | 2 -- alot/addressbook/__init__.py | 2 -- alot/addressbook/abook.py | 2 -- alot/addressbook/external.py | 2 -- alot/buffers.py | 2 -- alot/commands/__init__.py | 2 -- alot/commands/bufferlist.py | 2 -- alot/commands/envelope.py | 2 -- alot/commands/globals.py | 3 --- alot/commands/search.py | 2 -- alot/commands/taglist.py | 2 -- alot/commands/thread.py | 2 -- alot/commands/utils.py | 2 -- alot/completion.py | 2 -- alot/crypto.py | 2 -- alot/db/__init__.py | 3 --- alot/db/attachment.py | 2 -- alot/db/envelope.py | 2 -- alot/db/manager.py | 2 -- alot/db/message.py | 2 -- alot/db/thread.py | 2 -- alot/db/utils.py | 2 -- alot/helper.py | 3 --- alot/settings/const.py | 2 -- alot/settings/manager.py | 2 -- alot/settings/theme.py | 2 -- alot/settings/utils.py | 2 -- alot/ui.py | 2 -- alot/utils/argparse.py | 2 -- alot/utils/configobj.py | 2 -- alot/walker.py | 2 -- alot/widgets/bufferlist.py | 2 -- alot/widgets/globals.py | 2 -- alot/widgets/search.py | 2 -- alot/widgets/thread.py | 2 -- alot/widgets/utils.py | 2 -- docs/source/api/conf.py | 2 -- docs/source/conf.py | 2 -- docs/source/generate_commands.py | 2 -- docs/source/generate_configs.py | 2 -- tests/addressbook/abook_test.py | 2 -- tests/addressbook/external_test.py | 2 -- tests/addressbook/init_test.py | 2 -- tests/commands/envelope_test.py | 1 - tests/commands/global_test.py | 1 - tests/commands/init_test.py | 2 -- tests/commands/thread_test.py | 2 -- tests/commands/utils_tests.py | 1 - tests/completion_test.py | 2 -- tests/crypto_test.py | 2 -- tests/db/envelope_test.py | 2 -- tests/db/message_test.py | 1 - tests/db/thread_test.py | 2 -- tests/db/utils_test.py | 2 -- tests/helper_test.py | 1 - tests/settings/manager_test.py | 2 -- tests/settings/theme_test.py | 2 -- tests/settings/utils_test.py | 2 -- tests/utilities.py | 2 -- tests/utils/argparse_test.py | 2 -- tests/utils/configobj_test.py | 2 -- tests/widgets/globals_test.py | 2 -- 63 files changed, 124 deletions(-) diff --git a/alot/__main__.py b/alot/__main__.py index d8ab5b0d..b46985cb 100644 --- a/alot/__main__.py +++ b/alot/__main__.py @@ -1,8 +1,6 @@ # Copyright (C) 2011-2012 Patrick Totzke # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file -from __future__ import absolute_import - import argparse import logging import os diff --git a/alot/account.py b/alot/account.py index fe304ac6..f080fc88 100644 --- a/alot/account.py +++ b/alot/account.py @@ -3,8 +3,6 @@ # Copyright © 2017 Dylan Baker # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file -from __future__ import absolute_import - import abc import glob import logging diff --git a/alot/addressbook/__init__.py b/alot/addressbook/__init__.py index 28c4ecc7..cd302218 100644 --- a/alot/addressbook/__init__.py +++ b/alot/addressbook/__init__.py @@ -1,8 +1,6 @@ # Copyright (C) 2011-2015 Patrick Totzke # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file -from __future__ import absolute_import - import re import abc diff --git a/alot/addressbook/abook.py b/alot/addressbook/abook.py index 41b5103e..6e2aa756 100644 --- a/alot/addressbook/abook.py +++ b/alot/addressbook/abook.py @@ -1,8 +1,6 @@ # Copyright (C) 2011-2015 Patrick Totzke # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file -from __future__ import absolute_import - import os from . import AddressBook from ..settings.utils import read_config diff --git a/alot/addressbook/external.py b/alot/addressbook/external.py index 53f1e464..93e76784 100644 --- a/alot/addressbook/external.py +++ b/alot/addressbook/external.py @@ -1,8 +1,6 @@ # Copyright (C) 2011-2015 Patrick Totzke # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file -from __future__ import absolute_import - import re from ..helper import call_cmd diff --git a/alot/buffers.py b/alot/buffers.py index bfff3897..4f0a7044 100644 --- a/alot/buffers.py +++ b/alot/buffers.py @@ -1,8 +1,6 @@ # Copyright (C) 2011-2012 Patrick Totzke # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file -from __future__ import absolute_import - import logging import os diff --git a/alot/commands/__init__.py b/alot/commands/__init__.py index 0887a76a..ddd7ed17 100644 --- a/alot/commands/__init__.py +++ b/alot/commands/__init__.py @@ -1,8 +1,6 @@ # Copyright (C) 2011-2012 Patrick Totzke # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file -from __future__ import absolute_import - import argparse import glob import logging diff --git a/alot/commands/bufferlist.py b/alot/commands/bufferlist.py index 1a9bbdeb..73bd12a4 100644 --- a/alot/commands/bufferlist.py +++ b/alot/commands/bufferlist.py @@ -1,8 +1,6 @@ # Copyright (C) 2011-2012 Patrick Totzke # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file -from __future__ import absolute_import - from ..commands import Command, registerCommand from . import globals diff --git a/alot/commands/envelope.py b/alot/commands/envelope.py index 0485aa00..cbff2808 100644 --- a/alot/commands/envelope.py +++ b/alot/commands/envelope.py @@ -1,8 +1,6 @@ # Copyright (C) 2011-2012 Patrick Totzke # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file -from __future__ import absolute_import - import argparse import datetime import email diff --git a/alot/commands/globals.py b/alot/commands/globals.py index 4e272b8e..906117a6 100644 --- a/alot/commands/globals.py +++ b/alot/commands/globals.py @@ -1,9 +1,6 @@ # Copyright (C) 2011-2012 Patrick Totzke # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file -from __future__ import absolute_import -from __future__ import division - import argparse import code import email diff --git a/alot/commands/search.py b/alot/commands/search.py index bf8b9b6b..946749ec 100644 --- a/alot/commands/search.py +++ b/alot/commands/search.py @@ -1,8 +1,6 @@ # Copyright (C) 2011-2012 Patrick Totzke # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file -from __future__ import absolute_import - import argparse import logging diff --git a/alot/commands/taglist.py b/alot/commands/taglist.py index 5f90519f..1fa01369 100644 --- a/alot/commands/taglist.py +++ b/alot/commands/taglist.py @@ -1,8 +1,6 @@ # Copyright (C) 2011-2012 Patrick Totzke # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file -from __future__ import absolute_import - from . import Command, registerCommand from .globals import SearchCommand diff --git a/alot/commands/thread.py b/alot/commands/thread.py index bb90a5d8..05f73d6a 100644 --- a/alot/commands/thread.py +++ b/alot/commands/thread.py @@ -1,8 +1,6 @@ # Copyright (C) 2011-2012 Patrick Totzke # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file -from __future__ import absolute_import - import argparse import logging import mailcap diff --git a/alot/commands/utils.py b/alot/commands/utils.py index 7a1c0ac1..2e6b64e6 100644 --- a/alot/commands/utils.py +++ b/alot/commands/utils.py @@ -1,8 +1,6 @@ # Copyright (C) 2015 Patrick Totzke # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file -from __future__ import absolute_import - import re import logging diff --git a/alot/completion.py b/alot/completion.py index e338ee0b..a14c2ae0 100644 --- a/alot/completion.py +++ b/alot/completion.py @@ -1,8 +1,6 @@ # Copyright (C) 2011-2012 Patrick Totzke # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file -from __future__ import absolute_import - import abc import argparse import email.utils diff --git a/alot/crypto.py b/alot/crypto.py index e7e0bd36..a05db2fc 100644 --- a/alot/crypto.py +++ b/alot/crypto.py @@ -2,8 +2,6 @@ # Copyright © 2017-2018 Dylan Baker # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file -from __future__ import absolute_import - import gpg from .errors import GPGProblem, GPGCode diff --git a/alot/db/__init__.py b/alot/db/__init__.py index 37da86e6..2c6fd634 100644 --- a/alot/db/__init__.py +++ b/alot/db/__init__.py @@ -1,9 +1,6 @@ # Copyright (C) 2011-2012 Patrick Totzke # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file - -from __future__ import absolute_import - from .thread import Thread from .message import Message DB_ENC = 'UTF-8' diff --git a/alot/db/attachment.py b/alot/db/attachment.py index 1181a125..ec0feaeb 100644 --- a/alot/db/attachment.py +++ b/alot/db/attachment.py @@ -1,8 +1,6 @@ # Copyright (C) 2011-2012 Patrick Totzke # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file -from __future__ import absolute_import - import os import tempfile import email.charset as charset diff --git a/alot/db/envelope.py b/alot/db/envelope.py index 89a99ffa..89c1f984 100644 --- a/alot/db/envelope.py +++ b/alot/db/envelope.py @@ -1,8 +1,6 @@ # Copyright (C) 2011-2012 Patrick Totzke # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file -from __future__ import absolute_import - import glob import logging import os diff --git a/alot/db/manager.py b/alot/db/manager.py index 057c72d0..53170f87 100644 --- a/alot/db/manager.py +++ b/alot/db/manager.py @@ -1,8 +1,6 @@ # Copyright (C) 2011-2012 Patrick Totzke # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file -from __future__ import absolute_import - from collections import deque import errno import logging diff --git a/alot/db/message.py b/alot/db/message.py index 2e1fef54..10115072 100644 --- a/alot/db/message.py +++ b/alot/db/message.py @@ -1,8 +1,6 @@ # Copyright (C) 2011-2012 Patrick Totzke # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file -from __future__ import absolute_import - import email import email.charset as charset import functools diff --git a/alot/db/thread.py b/alot/db/thread.py index 25b75fb1..fe7ea10f 100644 --- a/alot/db/thread.py +++ b/alot/db/thread.py @@ -1,8 +1,6 @@ # Copyright (C) 2011-2012 Patrick Totzke # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file -from __future__ import absolute_import - from datetime import datetime from .message import Message diff --git a/alot/db/utils.py b/alot/db/utils.py index 6083968d..d7c56310 100644 --- a/alot/db/utils.py +++ b/alot/db/utils.py @@ -3,8 +3,6 @@ # Copyright © 2017 Dylan Baker # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file -from __future__ import absolute_import - import os import email import email.charset as charset diff --git a/alot/helper.py b/alot/helper.py index b1880165..919793d8 100644 --- a/alot/helper.py +++ b/alot/helper.py @@ -3,9 +3,6 @@ # Copyright © 2017 Dylan Baker # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file -from __future__ import absolute_import -from __future__ import division - from datetime import timedelta from datetime import datetime from collections import deque diff --git a/alot/settings/const.py b/alot/settings/const.py index 11137d1d..b1449c29 100644 --- a/alot/settings/const.py +++ b/alot/settings/const.py @@ -1,8 +1,6 @@ # Copyright (C) 2011-2012 Patrick Totzke # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file -from __future__ import absolute_import - from .manager import SettingsManager settings = SettingsManager() diff --git a/alot/settings/manager.py b/alot/settings/manager.py index 56e6eec8..3ef9eccf 100644 --- a/alot/settings/manager.py +++ b/alot/settings/manager.py @@ -1,8 +1,6 @@ # Copyright (C) 2011-2012 Patrick Totzke # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file -from __future__ import absolute_import - import imp import itertools import logging diff --git a/alot/settings/theme.py b/alot/settings/theme.py index d74cb0e7..e6d6eae8 100644 --- a/alot/settings/theme.py +++ b/alot/settings/theme.py @@ -1,8 +1,6 @@ # Copyright (C) 2011-2012 Patrick Totzke # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file -from __future__ import absolute_import - import os from ..utils import configobj as checks diff --git a/alot/settings/utils.py b/alot/settings/utils.py index 8d656b79..65942aff 100644 --- a/alot/settings/utils.py +++ b/alot/settings/utils.py @@ -1,8 +1,6 @@ # Copyright (C) 2011-2012 Patrick Totzke # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file -from __future__ import absolute_import - import logging from configobj import (ConfigObj, ConfigObjError, flatten_errors, diff --git a/alot/ui.py b/alot/ui.py index b3430e07..16a5297b 100644 --- a/alot/ui.py +++ b/alot/ui.py @@ -1,8 +1,6 @@ # Copyright (C) 2011-2012 Patrick Totzke # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file -from __future__ import absolute_import - import logging import os import signal diff --git a/alot/utils/argparse.py b/alot/utils/argparse.py index 9822882d..e824d068 100644 --- a/alot/utils/argparse.py +++ b/alot/utils/argparse.py @@ -17,8 +17,6 @@ """Custom extensions of the argparse module.""" -from __future__ import absolute_import - import argparse import collections import functools diff --git a/alot/utils/configobj.py b/alot/utils/configobj.py index 78201690..73553a0c 100644 --- a/alot/utils/configobj.py +++ b/alot/utils/configobj.py @@ -1,8 +1,6 @@ # Copyright (C) 2011-2012 Patrick Totzke # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file -from __future__ import absolute_import - import mailbox import re from urllib.parse import urlparse diff --git a/alot/walker.py b/alot/walker.py index 2efb9886..e4264103 100644 --- a/alot/walker.py +++ b/alot/walker.py @@ -1,8 +1,6 @@ # Copyright (C) 2011-2012 Patrick Totzke # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file -from __future__ import absolute_import - import logging import urwid diff --git a/alot/widgets/bufferlist.py b/alot/widgets/bufferlist.py index 4f9187be..0ab315c5 100644 --- a/alot/widgets/bufferlist.py +++ b/alot/widgets/bufferlist.py @@ -5,8 +5,6 @@ """ Widgets specific to Bufferlist mode """ -from __future__ import absolute_import - import urwid diff --git a/alot/widgets/globals.py b/alot/widgets/globals.py index 67ff984b..470a517f 100644 --- a/alot/widgets/globals.py +++ b/alot/widgets/globals.py @@ -5,8 +5,6 @@ """ This contains alot-specific :class:`urwid.Widget` used in more than one mode. """ -from __future__ import absolute_import - import re import operator import urwid diff --git a/alot/widgets/search.py b/alot/widgets/search.py index 446a8964..130fbecc 100644 --- a/alot/widgets/search.py +++ b/alot/widgets/search.py @@ -4,8 +4,6 @@ """ Widgets specific to search mode """ -from __future__ import absolute_import - import urwid from ..settings.const import settings diff --git a/alot/widgets/thread.py b/alot/widgets/thread.py index 396cdf92..bef80b45 100644 --- a/alot/widgets/thread.py +++ b/alot/widgets/thread.py @@ -4,8 +4,6 @@ """ Widgets specific to thread mode """ -from __future__ import absolute_import - import logging import urwid from urwidtrees import Tree, SimpleTree, CollapsibleTree diff --git a/alot/widgets/utils.py b/alot/widgets/utils.py index 86eb49b7..15a2c60b 100644 --- a/alot/widgets/utils.py +++ b/alot/widgets/utils.py @@ -5,8 +5,6 @@ """ Utility Widgets not specific to alot """ -from __future__ import absolute_import - import urwid diff --git a/docs/source/api/conf.py b/docs/source/api/conf.py index c1673859..d43f2404 100644 --- a/docs/source/api/conf.py +++ b/docs/source/api/conf.py @@ -11,8 +11,6 @@ # # All configuration values have a default; values that are commented out # serve to show the default. -from __future__ import absolute_import - import sys, os ############################### diff --git a/docs/source/conf.py b/docs/source/conf.py index 6a822a7f..19b0d183 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- # alot documentation build configuration file -from __future__ import absolute_import - import sys, os ############################### diff --git a/docs/source/generate_commands.py b/docs/source/generate_commands.py index 5eda4978..c707615a 100755 --- a/docs/source/generate_commands.py +++ b/docs/source/generate_commands.py @@ -1,5 +1,3 @@ -from __future__ import absolute_import - import argparse import sys import os diff --git a/docs/source/generate_configs.py b/docs/source/generate_configs.py index 88726060..8ce483c4 100755 --- a/docs/source/generate_configs.py +++ b/docs/source/generate_configs.py @@ -1,5 +1,3 @@ -from __future__ import absolute_import - import sys import os import re diff --git a/tests/addressbook/abook_test.py b/tests/addressbook/abook_test.py index c5686caf..13452fb3 100644 --- a/tests/addressbook/abook_test.py +++ b/tests/addressbook/abook_test.py @@ -1,8 +1,6 @@ # Copyright (C) 2017 Lucas Hoffmann # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file -from __future__ import absolute_import - import os import tempfile import unittest diff --git a/tests/addressbook/external_test.py b/tests/addressbook/external_test.py index 99aacfd3..ca76cc50 100644 --- a/tests/addressbook/external_test.py +++ b/tests/addressbook/external_test.py @@ -1,8 +1,6 @@ # Copyright (C) 2017 Lucas Hoffmann # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file -from __future__ import absolute_import - import unittest import mock diff --git a/tests/addressbook/init_test.py b/tests/addressbook/init_test.py index 7f642933..d8f96af2 100644 --- a/tests/addressbook/init_test.py +++ b/tests/addressbook/init_test.py @@ -1,8 +1,6 @@ # Copyright (C) 2017 Lucas Hoffmann # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file -from __future__ import absolute_import - import unittest from alot import addressbook diff --git a/tests/commands/envelope_test.py b/tests/commands/envelope_test.py index ee1c0acc..e46b33a1 100644 --- a/tests/commands/envelope_test.py +++ b/tests/commands/envelope_test.py @@ -16,7 +16,6 @@ """Tests for the alot.commands.envelope module.""" -from __future__ import absolute_import import contextlib import email import os diff --git a/tests/commands/global_test.py b/tests/commands/global_test.py index 850c9447..53556c0f 100644 --- a/tests/commands/global_test.py +++ b/tests/commands/global_test.py @@ -16,7 +16,6 @@ """Tests for global commands.""" -from __future__ import absolute_import import os import tempfile diff --git a/tests/commands/init_test.py b/tests/commands/init_test.py index 15eb06df..a2b358ff 100644 --- a/tests/commands/init_test.py +++ b/tests/commands/init_test.py @@ -2,8 +2,6 @@ """Test suite for alot.commands.__init__ module.""" -from __future__ import absolute_import - import argparse import unittest diff --git a/tests/commands/thread_test.py b/tests/commands/thread_test.py index 81328410..315273c5 100644 --- a/tests/commands/thread_test.py +++ b/tests/commands/thread_test.py @@ -4,8 +4,6 @@ # For further details see the COPYING file """Test suite for alot.commands.thread module.""" -from __future__ import absolute_import - import email import unittest diff --git a/tests/commands/utils_tests.py b/tests/commands/utils_tests.py index c17473dc..c4e4805a 100644 --- a/tests/commands/utils_tests.py +++ b/tests/commands/utils_tests.py @@ -14,7 +14,6 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -from __future__ import absolute_import import tempfile import os import shutil diff --git a/tests/completion_test.py b/tests/completion_test.py index 15a80a89..79f07e1b 100644 --- a/tests/completion_test.py +++ b/tests/completion_test.py @@ -4,8 +4,6 @@ # For further details see the COPYING file """Tests for the alot.completion module.""" -from __future__ import absolute_import - import unittest import mock diff --git a/tests/crypto_test.py b/tests/crypto_test.py index c3db1055..56cc999d 100644 --- a/tests/crypto_test.py +++ b/tests/crypto_test.py @@ -1,8 +1,6 @@ # Copyright (C) 2017 Lucas Hoffmann # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file -from __future__ import absolute_import - import os import shutil import signal diff --git a/tests/db/envelope_test.py b/tests/db/envelope_test.py index 14f5fa1f..4037daa2 100644 --- a/tests/db/envelope_test.py +++ b/tests/db/envelope_test.py @@ -1,6 +1,4 @@ # encoding=utf-8 -from __future__ import absolute_import - import unittest from alot.db import envelope diff --git a/tests/db/message_test.py b/tests/db/message_test.py index 4aa88223..caa70a44 100644 --- a/tests/db/message_test.py +++ b/tests/db/message_test.py @@ -14,7 +14,6 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -from __future__ import absolute_import import unittest import mock diff --git a/tests/db/thread_test.py b/tests/db/thread_test.py index 8e4a5003..e3e398eb 100644 --- a/tests/db/thread_test.py +++ b/tests/db/thread_test.py @@ -15,8 +15,6 @@ # along with this program. If not, see . """Tests for the alot.db.thread module.""" -from __future__ import absolute_import - import datetime import unittest diff --git a/tests/db/utils_test.py b/tests/db/utils_test.py index 484562fc..9e411e3d 100644 --- a/tests/db/utils_test.py +++ b/tests/db/utils_test.py @@ -3,8 +3,6 @@ # Copyright © 2017 Dylan Baker # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file -from __future__ import absolute_import - import base64 import codecs import email diff --git a/tests/helper_test.py b/tests/helper_test.py index 1d20caa8..b1300c7d 100644 --- a/tests/helper_test.py +++ b/tests/helper_test.py @@ -17,7 +17,6 @@ """Test suite for alot.helper module.""" -from __future__ import absolute_import import datetime import email import errno diff --git a/tests/settings/manager_test.py b/tests/settings/manager_test.py index d04e244d..dec676b3 100644 --- a/tests/settings/manager_test.py +++ b/tests/settings/manager_test.py @@ -4,8 +4,6 @@ """Test suite for alot.settings.manager module.""" -from __future__ import absolute_import - import os import tempfile import textwrap diff --git a/tests/settings/theme_test.py b/tests/settings/theme_test.py index abc541e3..b3f90661 100644 --- a/tests/settings/theme_test.py +++ b/tests/settings/theme_test.py @@ -2,8 +2,6 @@ # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file -from __future__ import absolute_import - import unittest from alot.settings import theme diff --git a/tests/settings/utils_test.py b/tests/settings/utils_test.py index d88ed55f..869054ce 100644 --- a/tests/settings/utils_test.py +++ b/tests/settings/utils_test.py @@ -4,8 +4,6 @@ """Tests for the alot.setting.utils module.""" -from __future__ import absolute_import - import unittest import mock diff --git a/tests/utilities.py b/tests/utilities.py index 85f3d3eb..2f5d2611 100644 --- a/tests/utilities.py +++ b/tests/utilities.py @@ -16,8 +16,6 @@ """Helpers for unittests themselves.""" -from __future__ import absolute_import - import functools import unittest diff --git a/tests/utils/argparse_test.py b/tests/utils/argparse_test.py index ff339b26..a793d5cf 100644 --- a/tests/utils/argparse_test.py +++ b/tests/utils/argparse_test.py @@ -16,8 +16,6 @@ """Tests for alot.utils.argparse""" -from __future__ import absolute_import - import argparse import contextlib import os diff --git a/tests/utils/configobj_test.py b/tests/utils/configobj_test.py index 65747328..bc1babab 100644 --- a/tests/utils/configobj_test.py +++ b/tests/utils/configobj_test.py @@ -1,6 +1,4 @@ # encoding=utf-8 -from __future__ import absolute_import - import unittest from alot.utils import configobj as checks diff --git a/tests/widgets/globals_test.py b/tests/widgets/globals_test.py index bcbf51e1..a52a721c 100644 --- a/tests/widgets/globals_test.py +++ b/tests/widgets/globals_test.py @@ -16,8 +16,6 @@ """Tests for the alot.widgets.globals module.""" -from __future__ import absolute_import - import unittest import mock -- cgit v1.2.3