Skip to content

Commit

Permalink
Remove unnecessary getPerDatasetTypeDimensions override.
Browse files Browse the repository at this point in the history
This abstractmethod has been removed from the base PipelineTask
class as unnecessary.
  • Loading branch information
TallJimbo committed Jul 12, 2019
1 parent 86f9585 commit 0a7ce11
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions python/lsst/ip/isr/isrTask.py
Original file line number Diff line number Diff line change
Expand Up @@ -827,14 +827,6 @@ def getPrerequisiteDatasetTypes(cls, config):
names.remove("ccdExposure")
return names

@classmethod
def getPerDatasetTypeDimensions(cls, config):
# Input calibration datasets of different types (i.e. flat, bias) need
# not have the same validity range. That makes calibration_label
# (which maps directly to a validity range) a "per-DatasetType
# dimension".
return frozenset(["calibration_label"])

def adaptArgsAndRun(self, inputData, inputDataIds, outputDataIds, butler):
try:
inputData['detectorNum'] = int(inputDataIds['ccdExposure']['detector'])
Expand Down

0 comments on commit 0a7ce11

Please sign in to comment.