25 from lsst.daf.butler.cli.utils
import (
32 num_subfilters_argument = MWArgumentDecorator(
34 help=
"NUM_SUBFILTERS is the number of subfilters to be used for chromatic modeling.",
35 type=click.IntRange(min=1),
39 band_names_argument = MWArgumentDecorator(
41 help=unwrap(
"""BAND_NAMES names of the bands to define chromatic subfilters for in the registry. Each
42 band will have the same number of subfilters defined, for example 'g0', 'g1', and 'g2' for
43 three subfilters and band 'g'."""),
44 callback=split_commas,