Browse Source

Fix small typos in docstrings

pull/10109/head
GoogleGenius 3 years ago
committed by dolfies
parent
commit
9f82fa1037
  1. 2
      discord/object.py

2
discord/object.py

@ -83,7 +83,7 @@ class Object(Hashable):
try:
id = int(id)
except ValueError:
raise TypeError(f'id parameter must be convertable to int not {id.__class__!r}') from None
raise TypeError(f'id parameter must be convertible to int not {id.__class__!r}') from None
else:
self.id = id

Loading…
Cancel
Save