Skip to content
Snippets Groups Projects
Commit 27a715cb authored by Alán Muñoz's avatar Alán Muñoz
Browse files

add reporter as optional

parent 5e2d2a6e
No related branches found
No related tags found
No related merge requests found
......@@ -39,12 +39,15 @@ logging.basicConfig(
class PipelineParameters(ParametersABC):
def __init__(self, general, tiler, baby, extraction, postprocessing):
def __init__(
self, general, tiler, baby, extraction, postprocessing, reporting=None
):
self.general = general
self.tiler = tiler
self.baby = baby
self.extraction = extraction
self.postprocessing = postprocessing
self.reporting = reporting
@classmethod
def default(
......@@ -54,6 +57,7 @@ class PipelineParameters(ParametersABC):
baby={},
extraction={},
postprocessing={},
reporting={},
):
"""
Load unit test experiment
......
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