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 c4c4b70 commit 6d066c6Copy full SHA for 6d066c6
sdk/storage/azure-storage-blob/azure/storage/blob/aio/_download_async.py
@@ -464,11 +464,11 @@ def chunks(self):
464
chunk_size=self._config.max_chunk_get_size)
465
466
@overload
467
- def read(self, size: int = -1) -> T:
+ async def read(self, size: int = -1) -> T:
468
...
469
470
471
- def read(self, *, chars: Optional[int] = None) -> T:
+ async def read(self, *, chars: Optional[int] = None) -> T:
472
473
474
# pylint: disable-next=too-many-statements,too-many-branches
0 commit comments