Skip to content

Commit

Permalink
Remove use of deprecated parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
timj committed Jul 6, 2023
1 parent e60a280 commit 2a01431
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions python/lsst/pipe/base/graph/_versionDeserializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
DatasetRef,
DatasetType,
DimensionConfig,
DimensionRecord,
DimensionUniverse,
Quantum,
SerializedDimensionRecord,
Expand Down Expand Up @@ -534,7 +533,6 @@ def constructGraph(
container = {}
datasetDict = _DatasetTracker[DatasetTypeName, TaskDef](createInverse=True)
taskToQuantumNode: defaultdict[TaskDef, set[QuantumNode]] = defaultdict(set)
recontitutedDimensions: dict[int, tuple[str, DimensionRecord]] = {}
initInputRefs: dict[TaskDef, list[DatasetRef]] = {}
initOutputRefs: dict[TaskDef, list[DatasetRef]] = {}

Expand Down Expand Up @@ -610,7 +608,7 @@ def constructGraph(
# reconstitute the node, passing in the dictionaries for the
# loaded TaskDefs and dimension records. These are used to ensure
# that each unique record is only loaded once
qnode = QuantumNode.from_simple(nodeDeserialized, loadedTaskDef, universe, recontitutedDimensions)
qnode = QuantumNode.from_simple(nodeDeserialized, loadedTaskDef, universe)
container[qnode.nodeId] = qnode
taskToQuantumNode[loadedTaskDef[nodeTaskLabel]].add(qnode)

Expand Down

0 comments on commit 2a01431

Please sign in to comment.