Skip to content

Commit

Permalink
Update utils.py (#1908)
Browse files Browse the repository at this point in the history
Co-authored-by: ~Jhellico <KJhellico@users.noreply.github.com>
Co-authored-by: Arkadii Yakovets <ark@cho.red>
  • Loading branch information
3 people authored Aug 8, 2024
1 parent b1b00e6 commit 8124e8d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions holidays/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@

import warnings
from functools import lru_cache
from typing import Dict, Iterable, List, Optional, Tuple, Union
from typing import Dict, Iterable, List, Optional, Union

from holidays.holiday_base import HolidayBase
from holidays.holiday_base import CategoryArg, HolidayBase
from holidays.registry import EntityLoader


Expand All @@ -37,7 +37,7 @@ def country_holidays(
prov: Optional[str] = None,
state: Optional[str] = None,
language: Optional[str] = None,
categories: Optional[Tuple[str]] = None,
categories: Optional[CategoryArg] = None,
) -> HolidayBase:
"""
Returns a new dictionary-like :py:class:`HolidayBase` object for the public
Expand Down

0 comments on commit 8124e8d

Please sign in to comment.