Skip to content

Commit

Permalink
Remove unused iteration variable
Browse files Browse the repository at this point in the history
Naming of the loop variable `i` is the same as the inner loop. The outer loop variable is unused, so this causes no problems, but is confusing and should be removed to avoid causing a problem if it were used in the future.
  • Loading branch information
aromanielloNTIA authored Sep 28, 2023
1 parent 591f1cf commit 7475065
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scos_actions/actions/acquire_sea_data_product.py
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ def __call__(self, schedule_entry, task_id):
[],
)
result_tic = perf_counter()
for i, channel_data_process in enumerate(dp_procs):
for channel_data_process in dp_procs:
# Retrieve object references for channel data
channel_data_refs = ray.get(channel_data_process)
channel_data = []
Expand Down

0 comments on commit 7475065

Please sign in to comment.