Skip to content

Commit

Permalink
Transformations: Remove superfluous enumerate from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mlange05 committed Oct 13, 2024
1 parent f65be88 commit 8fecaae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion loki/transformations/tests/test_parametrise.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ def stop_execution(**kwargs):

abort_callbacks = (error_stop, stop_execution)

for _, abort_callback in enumerate(abort_callbacks):
for abort_callback in abort_callbacks:
scheduler = Scheduler(
paths=[proj], config=config, seed_routines=['driver', 'another_driver'],
frontend=frontend, xmods=[tmp_path]
Expand Down

0 comments on commit 8fecaae

Please sign in to comment.