-
Notifications
You must be signed in to change notification settings - Fork 10
Bu 24 update sdk for beam saved location support #111
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
else: | ||
from enum import StrEnum | ||
|
||
# Python < 3.9 does not have Annotated in the enum module |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove in the enum module
seems to be a copy/paste
else: | ||
from typing import Annotated, Literal | ||
|
||
# Python < 3.8 does not have Literal in the enum module |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove in the enum module
if sys.version_info < (3, 9): | ||
from typing_extensions import Annotated | ||
else: | ||
from typing import Annotated, Literal |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do you need to import Literal
again here since you handled it further down on lines 23-26
No description provided.