Skip to content

Commit 87b7ba9

Browse files
committed
fix: updates typing for python 3.8
1 parent 244dac9 commit 87b7ba9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

‎packages/google-cloud-storage/google/cloud/storage/asyncio/async_appendable_object_writer.py‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
fromioimportBufferedReader
1616
importio
1717
importlogging
18-
fromtypingimportList, Optional, Tuple, Union
18+
fromtypingimportDict, List, Optional, Tuple, Union
1919

2020
fromgoogle.api_coreimportexceptions
2121
fromgoogle.api_core.retry_asyncimportAsyncRetry
@@ -367,7 +367,7 @@ async def append(
367367

368368
defsend_and_recv_generator(
369369
requests: List[BidiWriteObjectRequest],
370-
state: dict[str, _WriteState],
370+
state: Dict[str, _WriteState],
371371
metadata: Optional[List[Tuple[str, str]]] =None,
372372
):
373373
asyncdefgenerator():

0 commit comments

Comments
 (0)