Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Apr 17, 2024
1 parent 412362b commit 80079fc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_autoreducer_high_memory.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,9 @@ def get_status_queue_id(self, cursor, queue_name):
queue_id = cursor.fetchone()

if queue_id is None:
cursor.execute("INSERT INTO report_statusqueue (name, is_workflow_input) VALUES (%s, %s);", (queue_name, False))
cursor.execute(
"INSERT INTO report_statusqueue (name, is_workflow_input) VALUES (%s, %s);", (queue_name, False)
)
cursor.execute("SELECT id FROM report_statusqueue where name = %s;", (queue_name,))
queue_id = cursor.fetchone()

Expand Down

0 comments on commit 80079fc

Please sign in to comment.