Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@ 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
fix
"""
if days_remaining < 0:
return "OVERDUE"
elif days_remaining <= 3:
Expand Down