Skip to content

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

Open
wants to merge 8 commits into
base: master
Choose a base branch
from

Conversation

PaulDDD
Copy link

@PaulDDD PaulDDD commented Jul 13, 2025

No description provided.

else:
from enum import StrEnum

# Python < 3.9 does not have Annotated in the enum module
Copy link
Contributor

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
Copy link
Contributor

@medhatphq medhatphq Jul 14, 2025

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
Copy link
Contributor

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants