Skip to content

Commit

Permalink
Fix months imports (#1442)
Browse files Browse the repository at this point in the history
  • Loading branch information
KJhellico committed Aug 29, 2023
1 parent 2ab20c5 commit e8f3d1b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
17 changes: 15 additions & 2 deletions holidays/countries/bosnia_and_herzegovina.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,22 @@
from gettext import gettext as tr

from holidays.calendars import _CustomIslamicCalendar
from holidays.calendars.gregorian import GREGORIAN_CALENDAR
from holidays.calendars.gregorian import (
GREGORIAN_CALENDAR,
JAN,
FEB,
MAR,
APR,
MAY,
JUN,
JUL,
AUG,
SEP,
OCT,
NOV,
DEC,
)
from holidays.calendars.julian import JULIAN_CALENDAR
from holidays.constants import JAN, FEB, MAR, APR, MAY, JUN, JUL, AUG, SEP, OCT, NOV, DEC
from holidays.groups import ChristianHolidays, IslamicHolidays, InternationalHolidays
from holidays.holiday_base import HolidayBase

Expand Down
2 changes: 1 addition & 1 deletion holidays/countries/latvia.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from datetime import timedelta as td
from gettext import gettext as tr

from holidays.constants import MAY, JUL, SEP
from holidays.calendars.gregorian import MAY, JUL, SEP
from holidays.groups import ChristianHolidays, InternationalHolidays
from holidays.holiday_base import HolidayBase

Expand Down

0 comments on commit e8f3d1b

Please sign in to comment.