From 9f82fa10373cca8f3adc54101bf3c6d51ba4039f Mon Sep 17 00:00:00 2001 From: GoogleGenius <81032623+GoogleGenius@users.noreply.github.com> Date: Sun, 10 Jul 2022 23:05:09 -0500 Subject: [PATCH] Fix small typos in docstrings --- discord/object.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/object.py b/discord/object.py index 867eb27fe..b48b847e5 100644 --- a/discord/object.py +++ b/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