We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65c5c01 commit 863e884Copy full SHA for 863e884
cloudpathlib/azure/azblobclient.py
@@ -358,9 +358,9 @@ def _list_dir(
358
359
else:
360
if not recursive:
361
- blobs = container_client.walk_blobs(name_starts_with=prefix)
+ blobs = container_client.walk_blobs(name_starts_with=prefix) # type: ignore
362
363
- blobs = container_client.list_blobs(name_starts_with=prefix)
+ blobs = container_client.list_blobs(name_starts_with=prefix) # type: ignore
364
365
for blob in blobs:
366
# walk_blobs returns folders with a trailing slash
0 commit comments