(self, args)
| 59 | super().__init__(parser, "Loading Parameters", sentinel) |
| 60 | |
| 61 | def extract(self, args): |
| 62 | g = super().extract(args) |
| 63 | g.source_path = os.path.abspath(g.source_path) |
| 64 | return g |
| 65 | |
| 66 | class PipelineParams(ParamGroup): |
| 67 | def __init__(self, parser): |