Skip to content

Commit

Permalink
Oops (#36451)
Browse files Browse the repository at this point in the history
  • Loading branch information
vincenttran-msft committed Jul 12, 2024
1 parent c4c4b70 commit 6d066c6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -464,11 +464,11 @@ def chunks(self):
chunk_size=self._config.max_chunk_get_size)

@overload
def read(self, size: int = -1) -> T:
async def read(self, size: int = -1) -> T:
...

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

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

0 comments on commit 6d066c6

Please sign in to comment.