Skip to content

Commit 8decb50

Browse files
pylint: fix import-outside-toplevel case
Fix the only case of C0415 import-outside-toplevel. Part of #270
1 parent 929fcdf commit 8decb50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/suites/lib/tarantool_server.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
)
1616

1717
from .tarantool_admin import TarantoolAdmin
18+
from .remote_tarantool_server import RemoteTarantoolServer
1819

1920
def check_port(port, rais=True):
2021
try:
@@ -130,7 +131,6 @@ def __new__(cls,
130131
create_unix_socket=False,
131132
auth_type=None):
132133
if os.name == 'nt':
133-
from .remote_tarantool_server import RemoteTarantoolServer
134134
return RemoteTarantoolServer()
135135
return super(TarantoolServer, cls).__new__(cls)
136136

0 commit comments

Comments
 (0)