Skip to content
Snippets Groups Projects
Commit 454eac22 authored by Stefano Borini's avatar Stefano Borini
Browse files

Adds the missing optional parameter to ProbeMCOFactory.create_model

parent 6da08dad
No related branches found
No related tags found
1 merge request!142Adds the missing optional parameter to ProbeMCOFactory.create_model
...@@ -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