Commit 27348869 authored by Kristian Tan's avatar Kristian Tan

Added id to constructor

parent f36a9c1f
...@@ -78,7 +78,7 @@ def toggle_pin(change_pin): ...@@ -78,7 +78,7 @@ def toggle_pin(change_pin):
if pins[change_pin]['on_time'] is not None: if pins[change_pin]['on_time'] is not None:
uptime = str(datetime.now() - pins[change_pin]['on_time']) uptime = str(datetime.now() - pins[change_pin]['on_time'])
date = pins[change_pin]['on_time'] date = pins[change_pin]['on_time']
d = DailyUsage(date=pins[change_pin]['on_time'], hours=uptime) d = DailyUsage(id=100, date=pins[change_pin]['on_time'], hours=uptime)
db.session.add(d) db.session.add(d)
db.session.commit() db.session.commit()
...@@ -89,7 +89,7 @@ def toggle_pin(change_pin): ...@@ -89,7 +89,7 @@ def toggle_pin(change_pin):
pins[change_pin]['on_time'] = None pins[change_pin]['on_time'] = None
print("==========") print("==========")
e = DailyUsage.query.filter_by(date=date) e = DailyUsage.query.filter_by(id=100)
print(e) print(e)
print("==========") print("==========")
else: else:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment