mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-10-22 00:13:01 +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:
@@ -2902,7 +2902,8 @@ class Guild(Hashable):
|
||||
_entity_type = getattr(channel, '_scheduled_event_entity_type', MISSING)
|
||||
if _entity_type is None:
|
||||
raise TypeError(
|
||||
f'invalid GuildChannel type passed, must be VoiceChannel or StageChannel not {channel.__class__!r}'
|
||||
'invalid GuildChannel type passed, must be VoiceChannel or StageChannel '
|
||||
f'not {channel.__class__.__name__}'
|
||||
)
|
||||
if _entity_type is MISSING:
|
||||
raise TypeError('entity_type must be passed in when passing an ambiguous channel type')
|
||||
|
Reference in New Issue
Block a user