Skip to content

Commit

Permalink
Merge pull request #149 from praneshvijay/spr25
Browse files Browse the repository at this point in the history
Updated Dates for Spring Semester 2025
  • Loading branch information
harshkhandeparkar authored Jan 3, 2025
2 parents 705462d + 2591039 commit 16cff62
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions utils/dates.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
from collections import defaultdict


SEM_BEGIN = build_event.generate_india_time(2024, 7, 22, 0, 0)
MID_TERM_BEGIN = build_event.generate_india_time(2024, 9, 17, 0, 0)
MID_TERM_END = build_event.generate_india_time(2024, 9, 25, 0, 0)
END_TERM_BEGIN = build_event.generate_india_time(2024, 11, 18, 0, 0)
SEM_BEGIN = build_event.generate_india_time(2025, 1, 2, 0, 0)
MID_TERM_BEGIN = build_event.generate_india_time(2025, 2, 18, 0, 0)
MID_TERM_END = build_event.generate_india_time(2025, 2, 26, 0, 0)
END_TERM_BEGIN = build_event.generate_india_time(2025, 4, 21, 0, 0)
AUT_BREAK_BEGIN = build_event.generate_india_time(2024, 10, 5, 0, 0)
AUT_BREAK_END = build_event.generate_india_time(2024, 10, 13, 0, 0)

Expand Down Expand Up @@ -182,4 +182,4 @@ def get_rfc_time(time: int, day: str, minute: int = 0, second: int = 0) -> str:

for hday in hdays.keys():
hdays[hday].sort()
hdays[hday] = list(set(hdays[hday])) ### datetime dict(list)
hdays[hday] = list(set(hdays[hday])) ### datetime dict(list)

0 comments on commit 16cff62

Please sign in to comment.