Skip to content

Commit 9236b99

Browse files
committed
testing
1 parent 4d41081 commit 9236b99

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pymongo/asynchronous/database.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1133,7 +1133,7 @@ async def _list_collections_helper(
11331133
if comment is not None:
11341134
kwargs["comment"] = comment
11351135

1136-
async def _cmd(
1136+
async def _cmd_list_collections(
11371137
session: Optional[AsyncClientSession],
11381138
_server: Server,
11391139
conn: AsyncConnection,
@@ -1145,7 +1145,7 @@ async def _cmd(
11451145

11461146
print("Calling _list_collections_helper _cmd")
11471147
return await self._client._retryable_read(
1148-
_cmd, read_pref, session, operation=_Op.LIST_COLLECTIONS
1148+
_cmd_list_collections, read_pref, session, operation=_Op.LIST_COLLECTIONS
11491149
)
11501150

11511151
async def list_collections(

0 commit comments

Comments
 (0)