From 77d8c68b13401df8dfe55b2620fc6fde032dfad7 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Sat, 3 Nov 2018 19:55:20 -0400 Subject: [PATCH] pylint disable workbench check for now --- torba/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()