Skip to content

Commit ace28d8

Browse files
authored
fix: 🩹 Fix typo is instead of in (#2723)
🩹 Fix typo `is` instead of `in`
1 parent 8fdf18e commit ace28d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

discord/ext/bridge/core.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ def __getattribute__(self, name):
232232
except AttributeError as e:
233233
# if it doesn't exist, check this list, if the name of
234234
# the parameter is here
235-
if name is self.__special_attrs__:
235+
if name in self.__special_attrs__:
236236
raise e
237237

238238
# looks up the result in the variants.

0 commit comments

Comments
 (0)