Skip to content

Commit 6913935

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

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tarantool/connection.py

Lines changed: 2 additions & 0 deletions
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
@@ -1212,6 +1213,7 @@ def check(): # Check that connection is alive
12121213
flag = socket.MSG_PEEK
12131214
self._socket.setblocking(False)
12141215
else:
1216+
# pylint: disable=no-member
12151217
flag = socket.MSG_DONTWAIT | socket.MSG_PEEK
12161218
retbytes = self._sys_recv(sock_fd, buf, 1, flag)
12171219

0 commit comments

Comments
 (0)