Skip to content

Commit

Permalink
Fix missing type specification
Browse files Browse the repository at this point in the history
  • Loading branch information
joce committed Nov 14, 2023
1 parent a5646b8 commit e865ba5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/appui/test_enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class FloatTestEnum(Enum):
(FloatTestEnum, 1.99, FloatTestEnum.ONE_NINETY_NINE),
],
)
def test_get_enum_member(enum_type: Type, value: Any, enum_member: Any):
def test_get_enum_member(enum_type: Type[Enum], value: Any, enum_member: Any):
assert get_enum_member(enum_type, value) == enum_member


Expand Down

0 comments on commit e865ba5

Please sign in to comment.