Skip to content

Commit

Permalink
Removed type annotations from Enum to make mypy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
eprbell committed Jan 1, 2025
1 parent f3052dd commit 1c8fb10
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/rp2/entry_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,10 @@ def get_translation(self) -> str:


class EntrySetType(Enum):
IN: str = "in"
INTRA: str = "intra"
MIXED: str = "mixed"
OUT: str = "out"
IN = "in"
INTRA = "intra"
MIXED = "mixed"
OUT = "out"

@classmethod
def has_value(cls, value: str) -> bool:
Expand Down

0 comments on commit 1c8fb10

Please sign in to comment.