Skip to content

Commit 32f99c8

Browse files
Add files via upload
1 parent 553de80 commit 32f99c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

EXPR8.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -323,14 +323,14 @@ class Superclass1(Main):
323323
def __init__(self,**kwargs):
324324
super().__init__(**kwargs)
325325

326-
self.kwargs = kwargs
326+
self.__dict__.update(kwargs)
327327

328328
class Superclass2(Main):
329329

330330
def __init__(self,**kwargs):
331331
super().__init__(**kwargs)
332332

333-
self.kwargs = kwargs
333+
self.__dict__.update(kwargs)
334334

335335
class_attribute_values = Main(
336336
kwarg1 = 'I am the attribute property value of attribute1',

0 commit comments

Comments
 (0)