Skip to content

Commit 0cc4d40

Browse files
committed
Make type annotations compatible with py3.8
1 parent a065f9c commit 0cc4d40

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

tests/utils.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from inspect import isawaitable
22
from typing import (
33
TypeVar,
4+
List,
45
Union,
56
Iterable,
67
AsyncIterable,
@@ -9,7 +10,7 @@
910
T = TypeVar("T")
1011

1112

12-
async def maybe_async_iterable_to_list(iterable: Union[Iterable[T], AsyncIterable[T]]) -> list[T]:
13+
async def maybe_async_iterable_to_list(iterable: Union[Iterable[T], AsyncIterable[T]]) -> List[T]:
1314
items = []
1415
if isinstance(iterable, AsyncIterable):
1516
async for item in iterable:

tests/v1_test.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import asyncio
22
import uuid
3-
from typing import Any, Literal
3+
from typing import Any, Literal, List
44

55
import pytest
66
from google.protobuf.struct_pb2 import Struct
@@ -58,7 +58,7 @@ async def async_client(token) -> AsyncClient:
5858
# The configs array paramaterizes the tests in this file to run with different clients.
5959
# To make changes, modify both the configs array and the config fixture
6060
Config = Literal["Client_autodetect_sync", "Client_autodetect_async", "SyncClient", "AsyncClient"]
61-
configs: list[Config] = [
61+
configs: List[Config] = [
6262
"Client_autodetect_sync",
6363
"Client_autodetect_async",
6464
"SyncClient",

0 commit comments

Comments
 (0)