Skip to content

Commit 834b08b

Browse files
committed
Remove unused imports
1 parent 5bdf61c commit 834b08b

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tests/v1_test.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import asyncio
22
import uuid
3-
from inspect import isawaitable
4-
from typing import Any, AsyncIterable, Iterable, List, Literal, TypeVar, Union
3+
from typing import Any, Literal
54

65
import pytest
76
from google.protobuf.struct_pb2 import Struct
@@ -59,7 +58,7 @@ async def async_client(token) -> AsyncClient:
5958
# The configs array paramaterizes the tests in this file to run with different clients.
6059
# To make changes, modify both the configs array and the config fixture
6160
Config = Literal["Client_autodetect_sync", "Client_autodetect_async", "SyncClient", "AsyncClient"]
62-
configs: List[Config] = [
61+
configs: list[Config] = [
6362
"Client_autodetect_sync",
6463
"Client_autodetect_async",
6564
"SyncClient",

0 commit comments

Comments
 (0)