[elbe-devel] [PATCH 09/25] pylint: fix call constructor of base class

Manuel Traut manut at linutronix.de
Wed Aug 29 21:02:39 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..9200ed7f 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__()
 
 
 class SoapFile (ComplexModel):
@@ -34,3 +35,4 @@ class SoapFile (ComplexModel):
     def __init__(self, fi):
         self.name = fi.name
         self.description = fi.description
+        ComplexModel.__init__()
-- 
2.18.0




More information about the elbe-devel mailing list