mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-10-22 16:32:59 +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:
@@ -1850,7 +1850,7 @@ class Group:
|
||||
"""
|
||||
|
||||
if not isinstance(command, (Command, Group)):
|
||||
raise TypeError(f'expected Command or Group not {command.__class__!r}')
|
||||
raise TypeError(f'expected Command or Group not {command.__class__.__name__}')
|
||||
|
||||
if isinstance(command, Group) and self.parent is not None:
|
||||
# In a tree like so:
|
||||
|
Reference in New Issue
Block a user