[elbe-devel] [PATCH 33/40] pylint: fix call constructor of base class
Manuel Traut
manut at linutronix.de
Fri Sep 14 13:56:45 CEST 2018
Signed-off-by: Manuel Traut <manut at linutronix.de>
---
elbepack/daemons/soap/datatypes.py | 2 ++
1 file changed, 2 insertions(+)
diff --git a/elbepack/daemons/soap/datatypes.py b/elbepack/daemons/soap/datatypes.py
index 159bf8c9..0fa28069 100644
--- a/elbepack/daemons/soap/datatypes.py
+++ b/elbepack/daemons/soap/datatypes.py
@@ -23,6 +23,7 @@ class SoapProject (ComplexModel):
self.version = prj.version
self.status = prj.status
self.edit = prj.edit
+ ComplexModel.__init__(self)
class SoapFile (ComplexModel):
@@ -34,3 +35,4 @@ class SoapFile (ComplexModel):
def __init__(self, fi):
self.name = fi.name
self.description = fi.description
+ ComplexModel.__init__(self)
--
2.19.0.rc2
More information about the elbe-devel
mailing list