Skip to content

Commit 2f5d58c

Browse files
Removed sync argument (#348)
1 parent 82b4b3a commit 2f5d58c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

neo4j/work/simple.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def _connect(self, access_mode):
107107
self._disconnect()
108108
self._connection = self._pool.acquire(access_mode, timeout=self._config.acquire_timeout)
109109

110-
def _disconnect(self, sync=None): # TODO: remove sync arg
110+
def _disconnect(self):
111111
if self._connection:
112112
self._connection.in_use = False
113113
self._connection = None

0 commit comments

Comments
 (0)