Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion httomo/sweep_runner/param_sweep_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ def execute_sweep(self):
unit="value",
ascii=True,
)
for val, _ in zip(self._sweep_values, progress):
for val in progress:
# Blocks are modified in-place by method wrappers, so a new block must be created
# that contains a copy of the input data to the sweep stage
block = ParamSweepBlock(
Expand Down
Loading