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 8d7ef2b commit 3acd30bCopy full SHA for 3acd30b
nitric/resources/buckets.py
@@ -160,7 +160,7 @@ async def files(self):
160
resp = await self._storage_stub.list_blobs(
161
storage_list_blobs_request=StorageListBlobsRequest(bucket_name=self.name)
162
)
163
- return [self.file(f.key) for f in resp.files]
+ return [self.file(f.key) for f in resp.blobs]
164
165
async def exists(self, key: str) -> bool:
166
"""Return true if a file in the bucket exists."""
0 commit comments