Skip to content
Snippets Groups Projects

Added incorrect calls to base constructor of MCOCommunicator and BaseMCOParameterFactory.

Merged Adham Hashibon requested to merge fix-incorrect-base-mco-comm into master
2 files
+ 4
3
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -27,9 +27,9 @@ class BaseMCOParameterFactory(HasStrictTraits):
@@ -27,9 +27,9 @@ class BaseMCOParameterFactory(HasStrictTraits):
# The model class to instantiate when create_model is called.
# The model class to instantiate when create_model is called.
model_class = Type('BaseMCOParameter')
model_class = Type('BaseMCOParameter')
def __init__(self, mco_factory):
def __init__(self, mco_factory, *args, **kwargs):
self.mco_factory = mco_factory
self.mco_factory = mco_factory
super(BaseMCOParameterFactory, self).__init__()
super(BaseMCOParameterFactory, self).__init__(*args, **kwargs)
def create_model(self, data_values=None):
def create_model(self, data_values=None):
"""Creates the instance of the model class and returns it.
"""Creates the instance of the model class and returns it.
Loading