We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03521f3 commit 11e4dd8Copy full SHA for 11e4dd8
1 file changed
cterasdk/common/object.py
@@ -7,7 +7,6 @@
7
class Object(MutableMapping): # pylint: disable=too-many-instance-attributes
8
9
def __init__(self, **kwargs):
10
- super().__init__()
11
for k, v in kwargs.items():
12
setattr(self, k, v)
13
@@ -36,6 +35,7 @@ def __repr__(self):
36
35
class Device(Object):
37
38
def __init__(self, uid, version, firmware):
+ super().__init__()
39
self.namespace = 'http://www.w3.org/2001/XMLSchema-instance'
40
self.location = '../../db/resources/db.xsd'
41
self.id = uid
0 commit comments