Fix small typos in docstrings

This commit is contained in:
GoogleGenius
2022-07-10 23:05:09 -05:00
committed by GitHub
parent 1aaa32d4bc
commit eea70b53cd
2 changed files with 2 additions and 2 deletions

View File

@ -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