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:
Ionite
2022-09-12 15:25:55 -04:00
committed by GitHub
parent 9398971705
commit 6981eb69c4
23 changed files with 35 additions and 34 deletions

View File

@ -189,7 +189,7 @@ class BotBase(GroupMixin[None]):
raise TypeError('Both owner_id and owner_ids are set.')
if self.owner_ids and not isinstance(self.owner_ids, collections.abc.Collection):
raise TypeError(f'owner_ids must be a collection not {self.owner_ids.__class__!r}')
raise TypeError(f'owner_ids must be a collection not {self.owner_ids.__class__.__name__}')
if help_command is _default:
self.help_command = DefaultHelpCommand()