Compare commits

..

2 commits

Author SHA1 Message Date
Edward Betts a9cad3c749 Add time to Critical Mass 2023-10-29 15:51:41 +00:00
Edward Betts a93a84adad Refactor 2023-10-29 15:50:30 +00:00

View file

@ -313,13 +313,21 @@ def critical_mass(start_date: date, limit: int = 12) -> list[Event]:
events: list[Event] = []
current_date = start_date
tz = pytz.timezone("Europe/London")
t = time(18, 0)
for _ in range(limit):
# Calculate the last Friday of the current month
last_friday = current_date + relativedelta(day=31, weekday=FR(-1))
# Include it in the list only if it's on or after the start_date
if last_friday >= start_date:
events.append(Event(name="critical_mass", date=last_friday))
events.append(
Event(
name="critical_mass",
date=tz.localize(datetime.combine(last_friday, t)),
)
)
# Move to the next month
current_date += relativedelta(months=1)
@ -336,6 +344,7 @@ def windmill_hill_market_days(start_date: date) -> list[Event]:
count = 0
tz = pytz.timezone("Europe/London")
t = time(10, 0)
while count < 12:
# Skip months outside of April to December
@ -353,7 +362,7 @@ def windmill_hill_market_days(start_date: date) -> list[Event]:
Event(
name="market",
title="Windmill Hill Market",
date=tz.localize(datetime.combine(first_saturday, time(10, 0))),
date=tz.localize(datetime.combine(first_saturday, t)),
)
)
count += 1