Skip to content

Commit

Permalink
Merge branch 'tickets/DM-27500' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
n8pease committed Nov 18, 2020
2 parents 22db31c + 8c7f331 commit f735745
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions python/lsst/pipe/tasks/cli/cmd/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,17 @@
import click

from lsst.daf.butler.cli.opt import (repo_argument, config_file_option, options_file_option)
from lsst.daf.butler.cli.utils import (cli_handle_exception, split_commas, typeStrAcceptsMultiple)
from lsst.daf.butler.cli.utils import (
ButlerCommand,
cli_handle_exception,
split_commas,
typeStrAcceptsMultiple,
)
from lsst.obs.base.cli.opt import instrument_argument
from ... import script


@click.command(short_help="Define a discrete skymap from calibrated exposures.")
@click.command(cls=ButlerCommand, short_help="Define a discrete skymap from calibrated exposures.")
@repo_argument(required=True)
@instrument_argument(required=True)
@config_file_option(help="Path to a pex_config override to be included after the Instrument config overrides"
Expand Down

0 comments on commit f735745

Please sign in to comment.