Skip to content

Commit

Permalink
make not-yet implemeted commands say so.
Browse files Browse the repository at this point in the history
  • Loading branch information
n8pease committed Jun 20, 2020
1 parent 2448dce commit c67f6f6
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions python/lsst/ctrl/mpexec/cli/cmd/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,12 @@ def build(*args, **kwargs):
@save_pipeline_option()
@show_option(multiple=True)
@task_option(multiple=True)
def qgraph():
"""Build and optionally save pipeline and quantum graph.
def qgraph(*args, **kwargs):
"""Not implemented.
Build and optionally save pipeline and quantum graph.
"""
pass
print("Not implemented.")


@click.command()
Expand All @@ -85,7 +87,9 @@ def qgraph():
@save_pipeline_option()
@show_option(multiple=True)
@task_option(multiple=True)
def run():
"""Build and execute pipeline and quantum graph.
def run(*args, **kwargs):
"""Not implemented.
Build and execute pipeline and quantum graph.
"""
pass
print("Not implemented.")

0 comments on commit c67f6f6

Please sign in to comment.