From fe748a7f47fb61d46dd88c270c2329e6ff19a895 Mon Sep 17 00:00:00 2001 From: Lucas Hoffmann Date: Thu, 14 Jul 2016 14:18:48 +0200 Subject: Clean up imports - use relative imports if possible - group imports into standard library, third party, and alot modules - sort imports alphabetically --- alot/commands/search.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'alot/commands/search.py') diff --git a/alot/commands/search.py b/alot/commands/search.py index 7a2184ae..b79ce831 100644 --- a/alot/commands/search.py +++ b/alot/commands/search.py @@ -4,13 +4,13 @@ import argparse import logging -from alot.commands import Command, registerCommand -from alot.commands.globals import PromptCommand -from alot.commands.globals import MoveCommand +from . import Command, registerCommand +from .globals import PromptCommand +from .globals import MoveCommand +from .. import commands -from alot.db.errors import DatabaseROError -from alot import commands -from alot import buffers +from .. import buffers +from ..db.errors import DatabaseROError MODE = 'search' -- cgit v1.2.3