From 88ea3770b91ae2deda880a830114b428cbe0f059 Mon Sep 17 00:00:00 2001 From: Lee Kelvin Date: Mon, 17 Feb 2025 12:28:40 -0800 Subject: [PATCH] Left-align query_dataset_types for legibility --- python/lsst/daf/butler/cli/cmd/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/lsst/daf/butler/cli/cmd/commands.py b/python/lsst/daf/butler/cli/cmd/commands.py index 44245672c8..b9018291f2 100644 --- a/python/lsst/daf/butler/cli/cmd/commands.py +++ b/python/lsst/daf/butler/cli/cmd/commands.py @@ -469,7 +469,7 @@ def query_dataset_types(*args: Any, **kwargs: Any) -> None: """Get the dataset types in a repository.""" table = script.queryDatasetTypes(*args, **kwargs) if table: - table.pprint_all() + table.pprint_all(align="<") else: print("No results. Try --help for more information.")