Skip to content

Commit ea6044e

Browse files
committed
lint
1 parent bb91a28 commit ea6044e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

v03_pipeline/lib/tasks/delete_old_runs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def run(self) -> None:
4646

4747
# Delete run dirs until we encounter the first of the N successful runs to keep.
4848
oldest_successful_run_index = run_dir_paths.index(
49-
successful_run_dir_paths[-MIN_SUCCESSFUL_RUNS]
49+
successful_run_dir_paths[-MIN_SUCCESSFUL_RUNS],
5050
)
5151
for run_dir_path in run_dir_paths[:oldest_successful_run_index]:
5252
GCSorLocalTarget(run_dir_path.replace('file:', '')).remove()

0 commit comments

Comments
 (0)