From fb2340f18070a09e016410030827959c1c665969 Mon Sep 17 00:00:00 2001 From: Orion Eiger Date: Thu, 27 Jun 2024 15:57:39 -0700 Subject: [PATCH] Fix argument and init for v2 --- python/lsst/ctrl/mpexec/cli/cmd/commands.py | 2 +- python/lsst/ctrl/mpexec/cli/script/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/python/lsst/ctrl/mpexec/cli/cmd/commands.py b/python/lsst/ctrl/mpexec/cli/cmd/commands.py index 0f648a7c..60ea46f6 100644 --- a/python/lsst/ctrl/mpexec/cli/cmd/commands.py +++ b/python/lsst/ctrl/mpexec/cli/cmd/commands.py @@ -340,7 +340,7 @@ def update_graph_run( @click.command(cls=PipetaskCommand) @repo_argument() -@click.argument() +@click.argument("qgraphs") @click.option("--collections", default=None, help="Collections to resolve duplicate datasets in.") @click.option("--where", default="", help="where") @click.option("--full-output-filename", default="", help="Output report as a yaml file with this name.") diff --git a/python/lsst/ctrl/mpexec/cli/script/__init__.py b/python/lsst/ctrl/mpexec/cli/script/__init__.py index 10767d14..dc14543e 100644 --- a/python/lsst/ctrl/mpexec/cli/script/__init__.py +++ b/python/lsst/ctrl/mpexec/cli/script/__init__.py @@ -31,7 +31,7 @@ from .pre_exec_init_qbb import pre_exec_init_qbb from .purge import PurgeResult, purge from .qgraph import qgraph -from .report import report +from .report import report, report_v2 from .run import run from .run_qbb import run_qbb from .update_graph_run import update_graph_run