We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2d33ca commit 66c7527Copy full SHA for 66c7527
predicthq/endpoints/v1/beam/schemas.py
@@ -13,13 +13,13 @@ class StrEnum(str, enum.Enum):
13
else:
14
from enum import StrEnum
15
16
-# Python < 3.9 does not have Annotated in the enum module
+# Python < 3.9 does not have Annotated
17
if sys.version_info < (3, 9):
18
from typing_extensions import Annotated
19
20
- from typing import Annotated, Literal
+ from typing import Annotated
21
22
-# Python < 3.8 does not have Literal in the enum module
+# Python < 3.8 does not have Literal
23
if sys.version_info < (3, 8):
24
from typing_extensions import Literal
25
0 commit comments