Skip to content

Commit

Permalink
Remove unnecessary brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
YiGeon committed Jan 8, 2025
1 parent 4a35f01 commit 66ed363
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions holidays/countries/south_korea.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,7 @@ def _populate_observed(self, dts: set[date], three_day_holidays: dict[date, str]
if not self._is_observed(dt):
continue
dt_observed = self._get_observed_date(
dt,
(SUN_TO_NEXT_WORKDAY if dt in three_day_holidays else SAT_SUN_TO_NEXT_WORKDAY),
dt, SUN_TO_NEXT_WORKDAY if dt in three_day_holidays else SAT_SUN_TO_NEXT_WORKDAY
)
if dt_observed != dt or len(self.get_list(dt)) > 1:
if dt_observed == dt:
Expand Down

0 comments on commit 66ed363

Please sign in to comment.