Skip to content

Commit

Permalink
[Storage] Fix duplicate type signatures in async (#23375)
Browse files Browse the repository at this point in the history
  • Loading branch information
jalauzon-msft authored Mar 8, 2022
1 parent 3d3ead1 commit 4513dbd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -564,9 +564,9 @@ async def download_file(
self,
offset=None, # type: Optional[int]
length=None, # type: Optional[int]
**kwargs
**kwargs # type: Any
):
# type: (Optional[int], Optional[int], Any) -> StorageStreamDownloader
# type: (...) -> StorageStreamDownloader
"""Downloads a file to the StorageStreamDownloader. The readall() method must
be used to read all the content or readinto() must be used to download the file into
a stream. Using chunks() returns an async iterator which allows the user to iterate over the content in chunks.
Expand Down

0 comments on commit 4513dbd

Please sign in to comment.