From 0e7a4c23864092cbd2ee675c393a914e3cc8ed4b Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Tue, 5 Mar 2024 07:44:12 +0100 Subject: [PATCH] Fix incorrect docstring --- update_bank_holiday_list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update_bank_holiday_list.py b/update_bank_holiday_list.py index 98adb0c..90a62c1 100755 --- a/update_bank_holiday_list.py +++ b/update_bank_holiday_list.py @@ -13,7 +13,7 @@ config = __import__("config.default", fromlist=[""]) async def get_bank_holidays() -> list[StrDict]: - """Call space launch API and cache results.""" + """Call UK Government bank holidays API and cache results.""" return await agenda.uk_holiday.get_holiday_list(config.DATA_DIR)