Skip to content

Commit

Permalink
fix linting format issue
Browse files Browse the repository at this point in the history
  • Loading branch information
AVMatthews committed Jan 20, 2025
1 parent 1fc3454 commit 433c66b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def search_and_schedule_new_tasks(db_conn, db_cursor, clp_metadata_db_connection
{
"status": CompressionJobStatus.FAILED,
"status_msg": "invalid input path",
"update_time": update_time
"update_time": update_time,
},
)
db_conn.commit()
Expand All @@ -231,7 +231,7 @@ def search_and_schedule_new_tasks(db_conn, db_cursor, clp_metadata_db_connection
"num_tasks": paths_to_compress_buffer.num_tasks,
"status": CompressionJobStatus.RUNNING,
"start_time": start_time,
"update_time": start_time
"update_time": start_time,
},
)
db_conn.commit()
Expand Down Expand Up @@ -336,7 +336,7 @@ def poll_running_jobs(db_conn, db_cursor):
dict(
status=CompressionJobStatus.SUCCEEDED,
duration=duration,
update_time=update_time
update_time=update_time,
),
)
else:
Expand All @@ -347,7 +347,7 @@ def poll_running_jobs(db_conn, db_cursor):
dict(
status=CompressionJobStatus.FAILED,
status_msg=error_message,
update_time=update_time
update_time=update_time,
),
)
db_conn.commit()
Expand Down

0 comments on commit 433c66b

Please sign in to comment.