diff --git a/torba/cli.py b/torba/cli.py index 981e9698e..cc12527e9 100644 --- a/torba/cli.py +++ b/torba/cli.py @@ -42,7 +42,7 @@ def main(): command = getattr(args, 'command', 'help') if command == 'gui': - from torba.workbench import main as start_app + from torba.workbench import main as start_app # pylint: disable=E0611,E0401 return start_app() loop = asyncio.get_event_loop()