Skip to content

Commit 13eddfd

Browse files
committed
fix typing
1 parent 9095bf7 commit 13eddfd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/asynchronous/test_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2398,7 +2398,7 @@ def test_gevent_timeout_when_creating_connection(self):
23982398
client = self.async_rs_or_single_client()
23992399
self.addCleanup(client.close)
24002400
coll = client.pymongo_test.test
2401-
pool = async_get_pool(client)
2401+
pool = async_get_pool(client) # type:ignore
24022402

24032403
# Patch the pool to delay the connect method.
24042404
def delayed_connect(*args, **kwargs):

test/test_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2353,7 +2353,7 @@ def test_gevent_timeout_when_creating_connection(self):
23532353
client = self.rs_or_single_client()
23542354
self.addCleanup(client.close)
23552355
coll = client.pymongo_test.test
2356-
pool = get_pool(client)
2356+
pool = get_pool(client) # type:ignore
23572357

23582358
# Patch the pool to delay the connect method.
23592359
def delayed_connect(*args, **kwargs):

0 commit comments

Comments
 (0)