mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-12-04 22:42:21 +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:
@@ -272,7 +272,7 @@ def _set_api_version(value: int):
|
||||
global INTERNAL_API_VERSION
|
||||
|
||||
if not isinstance(value, int):
|
||||
raise TypeError(f'expected int not {value.__class__!r}')
|
||||
raise TypeError(f'expected int not {value.__class__.__name__}')
|
||||
|
||||
if value not in (9, 10):
|
||||
raise ValueError(f'expected either 9 or 10 not {value}')
|
||||
|
||||
Reference in New Issue
Block a user