We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
for
1 parent 4eaa09f commit 556b387Copy full SHA for 556b387
interactions/api/models/misc.py
@@ -36,7 +36,7 @@ def __init__(self, **kwargs):
36
# for key in kwargs:
37
# setattr(self, key, kwargs[key])
38
39
- for key in kwargs:
+ for key in list(kwargs):
40
if key in self.__slots__ if hasattr(self, "__slots__") else True:
41
# else case if the mixin is used outside of this library and/or SDK.
42
setattr(self, key, kwargs[key])
0 commit comments