summaryrefslogtreecommitdiff
path: root/alot/db/thread.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/db/thread.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/db/thread.py')
-rw-r--r--alot/db/thread.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/alot/db/thread.py b/alot/db/thread.py
index d3cd0757..a1af1cd1 100644
--- a/alot/db/thread.py
+++ b/alot/db/thread.py
@@ -4,8 +4,8 @@
import operator
from datetime import datetime
-from message import Message
-from alot.settings import settings
+from .message import Message
+from ..settings import settings
class Thread(object):