Update checklist.py

This commit is contained in:
SpudGunMan
2025-01-19 11:35:15 -08:00
parent e6fc794951
commit 10afc128f4

View File

@@ -38,7 +38,7 @@ def checkin(name, date, time, location, notes):
raise
conn.commit()
conn.close()
return "Checked In: " + str(name)
return "CheckedIn: " + str(name)
def delete_checkin(checkin_id):
# delete a checkin
@@ -87,7 +87,7 @@ def checkout(name, date, time_str, location, notes):
conn.commit()
conn.close()
if checkin_record:
return "Checked Out: " + str(name) + " duration " + timeCheckedIn
return "Checked⌛️Out: " + str(name) + " duration " + timeCheckedIn
else:
return "you must check in before checking out"