Skip to content

Commit 1334cb4

Browse files
committed
fix: updates typing for python 3.8
1 parent e1f8fc7 commit 1334cb4

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
@@ -369,7 +369,7 @@ async def append(
369369

370370
def send_and_recv_generator(
371371
requests: List[BidiWriteObjectRequest],
372-
state: dict[str, _WriteState],
372+
state: Dict[str, _WriteState],
373373
metadata: Optional[List[Tuple[str, str]]] = None,
374374
):
375375
async def generator():

0 commit comments

Comments
 (0)