Skip to content

Commit 6509aee

Browse files
Merge pull request #218 from tgenin/fix-tests
Fix tests
2 parents 65c4fdc + 1a2764c commit 6509aee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modelkit/assets/drivers/azure.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def build_client(client_configuration: Dict[str, str]) -> BlobServiceClient:
5555
@retry(**AZURE_RETRY_POLICY)
5656
def iterate_objects(self, prefix=None):
5757
container = self.client.get_container_client(self.bucket)
58-
for blob in container.list_blobs(prefix=prefix):
58+
for blob in container.list_blobs(name_starts_with=prefix):
5959
yield blob["name"]
6060

6161
@retry(**AZURE_RETRY_POLICY)

0 commit comments

Comments
 (0)