Skip to content

Commit

Permalink
Change command-line query-dataset-types components default to False
Browse files Browse the repository at this point in the history
This means that None is no longer available as an option because
the actual flag is boolean.
  • Loading branch information
timj committed Aug 21, 2023
1 parent 25a4e62 commit 9a455cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/daf/butler/cli/opt/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def makeCollectionTypes(

components_option = MWOptionDecorator(
"--components/--no-components",
default=None,
default=False,
help=unwrap(
"""For --components, apply all expression patterns to
component dataset type names as well. For --no-components,
Expand Down

0 comments on commit 9a455cc

Please sign in to comment.