Skip to content

Commit 2b209b4

Browse files
pylint: fix Windows compatibility
Follows #270
1 parent c0f2fe2 commit 2b209b4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tarantool/connection.py

+2
Original file line numberDiff line numberDiff line change
@@ -913,6 +913,7 @@ def connect_unix(self):
913913
914914
:meta private:
915915
"""
916+
# pylint: disable=no-member
916917

917918
try:
918919
# If old socket already exists - close it and re-create
@@ -1219,6 +1220,7 @@ def check(): # Check that connection is alive
12191220
if os.name != 'nt':
12201221
err = ctypes.get_errno()
12211222
else:
1223+
# pylint: disable=no-member
12221224
err = ctypes.get_last_error()
12231225
self._socket.setblocking(True)
12241226

0 commit comments

Comments
 (0)