Skip to content
Snippets Groups Projects
Unverified Commit 37ffc206 authored by jjenthought's avatar jjenthought Committed by GitHub
Browse files

Merge pull request #142 from force-h2020/fix-create-model-for-probe-mco-factory

Adds the missing optional parameter to ProbeMCOFactory.create_model
parents 6da08dad 454eac22
No related branches found
No related tags found
No related merge requests found
...@@ -101,7 +101,7 @@ class ProbeMCOFactory(BaseMCOFactory): ...@@ -101,7 +101,7 @@ class ProbeMCOFactory(BaseMCOFactory):
self, self,
nb_output_data_values=self.nb_output_data_values) nb_output_data_values=self.nb_output_data_values)
def create_model(self, model_data): def create_model(self, model_data=None):
if self.raises_on_create_model: if self.raises_on_create_model:
raise Exception("ProbeMCOFactory.create_model") raise Exception("ProbeMCOFactory.create_model")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment