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,))
cursor.execute("""
DELETE
FROM history
FROM item
WHERE uuid = %s
""", (uuid,))
cursor.close()