Skip to content

Commit 6d066c6

Browse files
Oops (#36451)
1 parent c4c4b70 commit 6d066c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sdk/storage/azure-storage-blob/azure/storage/blob/aio/_download_async.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -464,11 +464,11 @@ def chunks(self):
464464
chunk_size=self._config.max_chunk_get_size)
465465

466466
@overload
467-
def read(self, size: int = -1) -> T:
467+
async def read(self, size: int = -1) -> T:
468468
...
469469

470470
@overload
471-
def read(self, *, chars: Optional[int] = None) -> T:
471+
async def read(self, *, chars: Optional[int] = None) -> T:
472472
...
473473

474474
# pylint: disable-next=too-many-statements,too-many-branches

0 commit comments

Comments
 (0)