Skip to content

Commit aa41540

Browse files
committed
fix: type hints
1 parent a9c9f15 commit aa41540

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

google/api_core/_python_version_support.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
import warnings
2020
import sys
2121
import textwrap
22-
from typing import Any, NamedTuple, Optional, Dict, Tuple
22+
from typing import Any, List, NamedTuple, Optional, Dict, Tuple
2323

2424

2525
class PythonVersionStatus(enum.Enum):
@@ -64,7 +64,7 @@ class VersionInfo(NamedTuple):
6464
dep_unpatchable_cve: Optional[datetime.date] = None # unused
6565

6666

67-
PYTHON_VERSIONS: list[VersionInfo] = [
67+
PYTHON_VERSIONS: List[VersionInfo] = [
6868
# Refer to https://devguide.python.org/versions/ and the PEPs linked therefrom.
6969
VersionInfo(
7070
version="3.7",

0 commit comments

Comments
 (0)