Typing fix from NiceAesth

Co-authored-by: Andrei Baciu <8437201+NiceAesth@users.noreply.github.com>
This commit is contained in:
Zander 2024-08-18 00:34:32 -04:00 committed by GitHub
parent 2e0f5b365a
commit ba9534bc27
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ class TrackType(Enum):
OTHER = "other" OTHER = "other"
@classmethod @classmethod
def _missing_(cls, value): def _missing_(cls, _: object) -> "TrackType":
return cls.OTHER return cls.OTHER
def __str__(self) -> str: def __str__(self) -> str: