Skip to content

Commit

Permalink
fix inplace mutation
Browse files Browse the repository at this point in the history
  • Loading branch information
dwreeves committed Feb 9, 2024
1 parent 72690d3 commit 5c6210d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cosmos/converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def __init__(

execution_config = execution_config or ExecutionConfig()
render_config = render_config or RenderConfig()
operator_args = operator_args or {}
operator_args = operator_args.copy() if operator_args else {}

validate_initial_user_config(execution_config, profile_config, project_config, render_config, operator_args)

Expand Down

0 comments on commit 5c6210d

Please sign in to comment.