From e473f3c775b26a4bb54b18eb6240757306f4f5c1 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Sun, 19 Apr 2020 18:33:03 -0400 Subject: [PATCH] Convert id parameter of Object into int or raise TypeError on failure This prevents breakage for users who pass in a str as an ID whereas it previously worked. Fix #4002 --- discord/object.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/discord/object.py b/discord/object.py index 753e90696..1ca96c794 100644 --- a/discord/object.py +++ b/discord/object.py @@ -62,7 +62,12 @@ class Object(Hashable): """ def __init__(self, id): - self.id = id + try: + id = int(id) + except ValueError: + raise TypeError('id parameter must be convertable to int not {0.__class__!r}'.format(id)) from None + else: + self.id = id def __repr__(self): return '' % self.id