From be7106616bb2dce41f352bbcd1c1b2f65792a7e0 Mon Sep 17 00:00:00 2001 From: Zander <28664144+ZandercraftGames@users.noreply.github.com> Date: Sun, 18 Aug 2024 00:34:43 -0400 Subject: [PATCH] Typing fix from NiceAesth Co-authored-by: Andrei Baciu <8437201+NiceAesth@users.noreply.github.com> --- pomice/enums.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pomice/enums.py b/pomice/enums.py index c4e86e8..513b0dc 100644 --- a/pomice/enums.py +++ b/pomice/enums.py @@ -98,7 +98,7 @@ class PlaylistType(Enum): OTHER = "other" @classmethod - def _missing_(cls, value): + def _missing_(cls, _: object) -> "PlaylistType": return cls.OTHER def __str__(self) -> str: