mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-09-05 09:26:10 +00:00
Normalize type formatting in TypeError
Normalize most mixed usages of `__class__`, `__class__!r`, `__class__.__name__!r` to the standard form of `__class__.__name__`
This commit is contained in:
@ -468,7 +468,7 @@ class Choice(Generic[ChoiceT]):
|
||||
return AppCommandOptionType.string
|
||||
else:
|
||||
raise TypeError(
|
||||
f'invalid Choice value type given, expected int, str, or float but received {self.value.__class__!r}'
|
||||
f'invalid Choice value type given, expected int, str, or float but received {self.value.__class__.__name__}'
|
||||
)
|
||||
|
||||
async def get_translated_payload(self, translator: Translator) -> Dict[str, Any]:
|
||||
|
Reference in New Issue
Block a user