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

@ -94,7 +94,7 @@ class Object(Hashable):
try:
id = int(id)
except ValueError:
raise TypeError(f'id parameter must be convertible to int not {id.__class__!r}') from None
raise TypeError(f'id parameter must be convertible to int not {id.__class__.__name__}') from None
self.id: int = id
self.type: Type[abc.Snowflake] = type or self.__class__