Skip to content

Commit

Permalink
fixed bug introduced when param dict is flattened before dynamic sche…
Browse files Browse the repository at this point in the history
…mas are evaluated
  • Loading branch information
o-smirnov committed Feb 17, 2024
1 parent e2720a9 commit 4c56558
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stimela/kitchen/step.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,8 +236,8 @@ def finalize(self, config=None, log=None, fqname=None, backend=None, nesting=0):
self.cargo.name = self.cargo.name or self.name

# flatten parameters
self.params = self.cargo.flatten_param_dict(OrderedDict(), self.params)
self.cargo.apply_dynamic_schemas(self.params)
self.params = self.cargo.flatten_param_dict(OrderedDict(), self.params)

# if logger is not provided, then init one
if log is None:
Expand Down

0 comments on commit 4c56558

Please sign in to comment.