Skip to content

Commit

Permalink
Fix dict iteration error
Browse files Browse the repository at this point in the history
  • Loading branch information
chanhosuh committed Jul 22, 2023
1 parent 24c81d0 commit 7ca215e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion curvesim/pipelines/vol_limited_arb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def pipeline(
ncpu = cpu_count if cpu_count is not None else 1

default_params = DEFAULT_PARAMS.copy()
for key in default_params:
for key in DEFAULT_PARAMS:
if key in fixed_params:
del default_params[key]

Expand Down

0 comments on commit 7ca215e

Please sign in to comment.