From 6b920800059df6e76e53b717c528d8e2b7c57cd2 Mon Sep 17 00:00:00 2001 From: krypton36 Date: Wed, 3 Dec 2025 16:07:38 +0530 Subject: [PATCH 1/2] adding docstring to ... --- utils.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/utils.py b/utils.py index 936dbe0..f2066c8 100644 --- a/utils.py +++ b/utils.py @@ -42,7 +42,9 @@ def load_from_json(filename): def get_priority_level(days_remaining): - """Determine priority based on days remaining""" + """Determine priority based on days remaining + working on this issue for the first time + """ if days_remaining < 0: return "OVERDUE" elif days_remaining <= 3: From 7d68e9025030f3cc15676a9543d2e843a3638451 Mon Sep 17 00:00:00 2001 From: krypton36 Date: Wed, 3 Dec 2025 16:13:54 +0530 Subject: [PATCH 2/2] fix completed --- utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/utils.py b/utils.py index f2066c8..743e169 100644 --- a/utils.py +++ b/utils.py @@ -44,6 +44,7 @@ def load_from_json(filename): def get_priority_level(days_remaining): """Determine priority based on days remaining working on this issue for the first time + fix """ if days_remaining < 0: return "OVERDUE"