summaryrefslogtreecommitdiff
path: root/alot/settings/theme.py
diff options
context:
space:
mode:
authorLucas Hoffmann <l-m-h@web.de>2016-07-14 14:18:48 +0200
committerLucas Hoffmann <l-m-h@web.de>2016-12-09 11:26:19 +0100
commitfe748a7f47fb61d46dd88c270c2329e6ff19a895 (patch)
tree66bb5dc3145ef621db21e6505d91591e6b414d0f /alot/settings/theme.py
parentd89bbe11537abfceb3d0c7b62b9325fceaf51e32 (diff)
Clean up imports
- use relative imports if possible - group imports into standard library, third party, and alot modules - sort imports alphabetically
Diffstat (limited to 'alot/settings/theme.py')
-rw-r--r--alot/settings/theme.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/alot/settings/theme.py b/alot/settings/theme.py
index 308ec660..0e9ced2a 100644
--- a/alot/settings/theme.py
+++ b/alot/settings/theme.py
@@ -3,12 +3,12 @@
# For further details see the COPYING file
import os
-from utils import read_config
-from checks import align_mode
-from checks import attr_triple
-from checks import width_tuple
-from checks import force_list
-from errors import ConfigError
+from .utils import read_config
+from .checks import align_mode
+from .checks import attr_triple
+from .checks import width_tuple
+from .checks import force_list
+from .errors import ConfigError
DEFAULTSPATH = os.path.join(os.path.dirname(__file__), '..', 'defaults')
DUMMYDEFAULT = ('default',) * 6