Skip to content

Commit

Permalink
Update Unites States holidays: remove Columbus Day from countrywide h…
Browse files Browse the repository at this point in the history
…olidays (#2106)
  • Loading branch information
KJhellico authored Nov 6, 2024
1 parent 60966ea commit e658618
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 130 deletions.
42 changes: 19 additions & 23 deletions holidays/countries/united_states.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,29 +213,25 @@ def _populate_subdiv_holidays(self):
self._add_holiday_feb_22(name)

# Columbus Day
if self._year >= 1937 and (
self.subdiv is None
or self.subdiv
in {
"AS",
"AZ",
"CT",
"GA",
"ID",
"IL",
"IN",
"MA",
"MD",
"MO",
"MT",
"NJ",
"NY",
"OH",
"PA",
"UT",
"WV",
}
):
if self._year >= 1937 and self.subdiv in {
"AS",
"AZ",
"CT",
"GA",
"ID",
"IL",
"IN",
"MA",
"MD",
"MO",
"MT",
"NJ",
"NY",
"OH",
"PA",
"UT",
"WV",
}:
name = "Columbus Day"
if self._year >= 1971:
self._add_holiday_2nd_mon_of_oct(name)
Expand Down
Loading

0 comments on commit e658618

Please sign in to comment.