Skip to content

Commit

Permalink
Switch Model.dict for Model.model_dump
Browse files Browse the repository at this point in the history
  • Loading branch information
ghickman committed Aug 21, 2023
1 parent 39971d7 commit 3cfab7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jobrunner/actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def get_action_specification(config, action_id, using_dummy_data_backend=False):
return ActionSpecification(
run=run_command,
needs=action_spec.needs,
outputs=action_spec.outputs.dict(exclude_unset=True),
outputs=action_spec.outputs.model_dump(exclude_unset=True),
)


Expand Down

0 comments on commit 3cfab7e

Please sign in to comment.