Skip to content

Commit 863e884

Browse files
authored
fix for azure typing differences (#524)
1 parent 65c5c01 commit 863e884

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cloudpathlib/azure/azblobclient.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -358,9 +358,9 @@ def _list_dir(
358358

359359
else:
360360
if not recursive:
361-
blobs = container_client.walk_blobs(name_starts_with=prefix)
361+
blobs = container_client.walk_blobs(name_starts_with=prefix) # type: ignore
362362
else:
363-
blobs = container_client.list_blobs(name_starts_with=prefix)
363+
blobs = container_client.list_blobs(name_starts_with=prefix) # type: ignore
364364

365365
for blob in blobs:
366366
# walk_blobs returns folders with a trailing slash

0 commit comments

Comments
 (0)