summaryrefslogtreecommitdiff
path: root/alot/commands/globals.py
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2019-08-17 10:53:26 +0100
committerPatrick Totzke <patricktotzke@gmail.com>2019-08-17 11:10:37 +0100
commitc8986ebe26af6b17a09d714dbdb29d1b34b72c6e (patch)
tree11d873c03acc1f550171ca969a679e9832dfdff9 /alot/commands/globals.py
parent96308edb406bfe57437a6b662d8a20cb7f1b9778 (diff)
directly import Completers from their resp module
... instead of from alot.completion
Diffstat (limited to 'alot/commands/globals.py')
-rw-r--r--alot/commands/globals.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/alot/commands/globals.py b/alot/commands/globals.py
index 993397b5..c61015f9 100644
--- a/alot/commands/globals.py
+++ b/alot/commands/globals.py
@@ -25,10 +25,10 @@ from .. import buffers
from .. import helper
from ..helper import split_commandstring
from ..helper import mailto_to_envelope
-from ..completion import CommandLineCompleter
-from ..completion import ContactsCompleter
-from ..completion import AccountCompleter
-from ..completion import TagsCompleter
+from ..completion.commandline import CommandLineCompleter
+from ..completion.contacts import ContactsCompleter
+from ..completion.accounts import AccountCompleter
+from ..completion.tags import TagsCompleter
from ..widgets.utils import DialogBox
from ..db.errors import DatabaseLockedError
from ..db.envelope import Envelope