Skip to content
This repository has been archived by the owner on Sep 26, 2024. It is now read-only.

Commit

Permalink
Fix ActionEnvironment enum in python SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobmischka committed Apr 3, 2023
1 parent 044a2f1 commit 2d34a1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/interval_sdk/internal_rpc_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
from .types import BaseModel, GenericModel


ActionEnvironment: TypeAlias = Literal["live", "development"]
ActionEnvironment: TypeAlias = Union[Literal["production", "development"], str]


@base_dataclass
Expand Down

0 comments on commit 2d34a1c

Please sign in to comment.