From 201ee969601dd51efad694959fba1f42a0e966c1 Mon Sep 17 00:00:00 2001 From: Jim Bosch Date: Wed, 21 Aug 2024 12:29:28 -0400 Subject: [PATCH] Drop out-of-date docstrings. --- python/lsst/daf/butler/_butler.py | 7 ------- python/lsst/daf/butler/queries/_query.py | 3 +-- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/python/lsst/daf/butler/_butler.py b/python/lsst/daf/butler/_butler.py index 01cddb3361..6c6d77ee33 100644 --- a/python/lsst/daf/butler/_butler.py +++ b/python/lsst/daf/butler/_butler.py @@ -1640,13 +1640,6 @@ def _query_datasets( collection wildcard is passed when ``find_first`` is `True`, or when ``collections`` is `None` and default butler collections are not defined. - - Notes - ----- - When multiple dataset types are queried in a single call, the results - of this operation are equivalent to querying for each dataset type - separately in turn, and no information about the relationships between - datasets of different types is included. """ if data_id is None: data_id = DataCoordinate.make_empty(self.dimensions) diff --git a/python/lsst/daf/butler/queries/_query.py b/python/lsst/daf/butler/queries/_query.py index 4641f21d5a..61feb06ccd 100644 --- a/python/lsst/daf/butler/queries/_query.py +++ b/python/lsst/daf/butler/queries/_query.py @@ -241,8 +241,7 @@ def datasets( If `True` (default), for each result data ID, only yield one `DatasetRef` of each `DatasetType`, from the first collection in which a dataset of that dataset type appears (according to the - order of ``collections`` passed in). If `True`, ``collections`` - must not be ``...``. + order of ``collections`` passed in). Returns -------