You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using typing.Literal makes it clear what the valid values are. Alternatively/additionally, support using Enum names as values--this is already possible for enum values, ex: BuildType(200) -> <BuildType.debug: 200>, but this way is not as useful for lookup.
Using
typing.Literal
makes it clear what the valid values are. Alternatively/additionally, support using Enum names as values--this is already possible for enum values, ex:BuildType(200) -> <BuildType.debug: 200>
, but this way is not as useful for lookup.Ex:
The text was updated successfully, but these errors were encountered: