fixed delete

This commit is contained in:
Sam Hadow 2024-02-04 19:53:59 +01:00
parent bc0e1d8207
commit d8884664fa

View File

@ -135,7 +135,7 @@ def delete_item(uuid):
""", (uuid,)) """, (uuid,))
cursor.execute(""" cursor.execute("""
DELETE DELETE
FROM history FROM item
WHERE uuid = %s WHERE uuid = %s
""", (uuid,)) """, (uuid,))
cursor.close() cursor.close()