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:43 -04:00 committed by GitHub
parent ba9534bc27
commit be7106616b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

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