From 08ff2cfc16ff7ef683481ae347ffef1d3678061b Mon Sep 17 00:00:00 2001 From: nikolaswollenberg Date: Tue, 20 Feb 2024 10:00:31 +0100 Subject: [PATCH] Fixed bug --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index d433c6c..7387f4b 100644 --- a/app.py +++ b/app.py @@ -401,7 +401,7 @@ def check_habit(): if current_user not in users: return {"error": "Habit does not belong to user"} - trackings = habit.get_habitTracking() + trackings = habit.get_habitTrackings() # Check if habit has been tracked today delete_tracking = None