From 2a12e14e89b05639226504bd7d54d9e315827b8f Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Sat, 7 Oct 2023 11:13:48 +0100 Subject: [PATCH] delete unused xmas_day event --- agenda/__init__.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/agenda/__init__.py b/agenda/__init__.py index b2a82da..360fffa 100644 --- a/agenda/__init__.py +++ b/agenda/__init__.py @@ -194,11 +194,6 @@ def next_economist(input_date: date) -> date: return next_thursday_date -def xmas_day(input_date: date) -> date: - """Christmas day.""" - return date(input_date.year, 12, 25) - - def uk_financial_year_end(input_date: date) -> date: """Next date of the end of the UK financial year, April 5th.""" # Determine the year of the input date @@ -350,7 +345,6 @@ def get_data(now: datetime) -> dict[str, str | object]: "fathers_day": next_uk_fathers_day(today), "uk_financial_year_end": uk_financial_year_end(today), "xmas_last_posting_dates": xmas_last_posting_dates, - # "xmas_day": xmas_day(today), "rockets": thespacedevs.get_launches(rocket_dir, limit=40), }