summaryrefslogtreecommitdiff
path: root/alot/utils
diff options
context:
space:
mode:
authorLucas Hoffmann <l-m-h@web.de>2018-06-19 14:43:35 +0200
committerLucas Hoffmann <l-m-h@web.de>2018-06-19 14:48:54 +0200
commitbb6f52d23f26a163a9c4fc49ee4fe749b9e3af7c (patch)
tree94265330079fdf22419fc34941431ed2f0f13d1f /alot/utils
parentf52c43cbcc06a426d29da122b7682ba69c38c22e (diff)
Remove old __future__ imports
They are not needed for python >= 3.0.
Diffstat (limited to 'alot/utils')
-rw-r--r--alot/utils/argparse.py2
-rw-r--r--alot/utils/configobj.py2
2 files changed, 0 insertions, 4 deletions
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 <patricktotzke@gmail.com>
# 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