Skip to content
Snippets Groups Projects
Verified Commit c8158346 authored by Eunhak Lee's avatar Eunhak Lee
Browse files

fix: cover with parentheses

parent df098acf
No related branches found
No related tags found
No related merge requests found
Pipeline #10678 passed
......@@ -108,7 +108,7 @@ def match_part_obj_into_db(_part, part_type):
def finalize_transaction(_cursor, _transaction_id, _user_id, _combination_id):
_cursor.execute("INSERT INTO transactions (id, user_id, combination_id) VALUES (%s, %s, %s);", _transaction_id, _user_id, _combination_id)
_cursor.execute("INSERT INTO transactions (id, user_id, combination_id) VALUES (%s, %s, %s);", (_transaction_id, _user_id, _combination_id))
_cursor.fetchall()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment