Skip to content

Commit 87b7ba9

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

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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
from io import BufferedReader
1616
import io
1717
import logging
18-
from typing import List, Optional, Tuple, Union
18+
from typing import Dict, List, Optional, Tuple, Union
1919

2020
from google.api_core import exceptions
2121
from google.api_core.retry_async import AsyncRetry
@@ -367,7 +367,7 @@ async def append(
367367

368368
def send_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
async def generator():

0 commit comments

Comments
 (0)