Skip to content

Commit

Permalink
Avoid using DimensionGraph->DimensionGroup transition tools.
Browse files Browse the repository at this point in the history
  • Loading branch information
TallJimbo committed Jul 10, 2024
1 parent 98f1666 commit bde66b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/lsst/ci/middleware/mock_dataset_maker.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,9 @@ def make_datasets(self, dataset_type: DatasetType, run: str = MISC_INPUT_RUN) ->
return
if not self.butler.registry.registerDatasetType(dataset_type):
return
if (data_ids := self.cached_data_ids.get(dataset_type.dimensions.as_group())) is None:
if (data_ids := self.cached_data_ids.get(dataset_type.dimensions)) is None:
remaining_skypix_dimensions, dimensions = self._split_dimensions(
dataset_type.dimensions.as_group()
dataset_type.dimensions
)
data_ids = self._get_bounded_data_ids(dimensions)
while remaining_skypix_dimensions:
Expand Down

0 comments on commit bde66b0

Please sign in to comment.