From aa26be5bab25a0fb14a3f17da163e96f4c05384d Mon Sep 17 00:00:00 2001 From: Chanran Kim Date: Tue, 2 Jul 2019 15:51:46 +0900 Subject: [PATCH] Update hdays.py --- python/fbprophet/hdays.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/fbprophet/hdays.py b/python/fbprophet/hdays.py index 6e332cc..b6d9cf4 100644 --- a/python/fbprophet/hdays.py +++ b/python/fbprophet/hdays.py @@ -1372,7 +1372,7 @@ class Korea(HolidayBase): # Buddha's Birthday name = "Buddha's Birthday" - for offset in range(-1, 2, 1): + for offset in range(-1, 2, 1): ds = LunarDate(year + offset, 4, 8).toSolarDate() if ds.year == year: self[ds] = name @@ -1391,7 +1391,7 @@ class Korea(HolidayBase): # Chuseok name = "Chuseok" - for offset in range(-1, 2, 1): + for offset in range(-1, 2, 1): ds = LunarDate(year + offset, 8, 15).toSolarDate() if ds.year == year: self[ds] = name