diff --git a/discord/enums.py b/discord/enums.py index f4a17bbc..0e66fb95 100644 --- a/discord/enums.py +++ b/discord/enums.py @@ -651,10 +651,10 @@ class ProtocolUrl(Enum): games_library = "discord://-/library" library_settings = "discord://-/library/settings" - def __str__(self): + def __str__(self) -> str: return self.value - def format(self, **kwargs): + def format(self, **kwargs) -> str: return self.value.format(**kwargs)