fix: delete

This commit is contained in:
Timothy J. Baek
2024-07-06 08:10:58 -07:00
parent 0d70d7c9ac
commit c9b85bd4a2
10 changed files with 32 additions and 2 deletions

View File

@@ -267,9 +267,10 @@ class FunctionsTable:
def delete_function_by_id(self, id: str) -> bool:
with get_db() as db:
try:
db.query(Function).filter_by(id=id).delete()
db.commit()
return True
except:
return False