Suppress pylint warning about 'relative import'

This commit is contained in:
Dmitri Bogomolov 2018-10-08 12:38:41 +03:00
parent daf556ca50
commit 5572e6b3a1
Signed by untrusted user: g1itch
GPG Key ID: 720A756F18DEED13
1 changed files with 1 additions and 1 deletions

View File

@ -367,7 +367,7 @@ class Main:
time.time() - state.last_api_response >= 30):
self.stop()
elif not state.enableGUI:
from tests import core as test_core
from tests import core as test_core # pylint: disable=relative-import
test_core_result = test_core.run()
state.enableGUI = True
self.stop()