Skip to content

Commit

Permalink
Convert pex_config proxy list to a real list.
Browse files Browse the repository at this point in the history
  • Loading branch information
TallJimbo committed Mar 23, 2022
1 parent 8bcd0f3 commit 4a31f52
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion python/lsst/analysis/drp/gatherResourceUsage.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,10 @@ def __init__(self, *, config):
super().__init__(config=config)
# Override the empty dimension set the connection was defined with with
# those the task was configured with.
self.input_metadata = dataclasses.replace(self.input_metadata, dimensions=self.config.dimensions)
self.input_metadata = dataclasses.replace(
self.input_metadata,
dimensions=list(self.config.dimensions),
)
self.allConnections["input_metadata"] = self.input_metadata


Expand Down

0 comments on commit 4a31f52

Please sign in to comment.