python-datetutil: WEEKDAYS and MONTHS can have arbitrary length tuples (#6689)

This commit is contained in:
Joseph Young
2021-12-25 09:18:38 +00:00
committed by GitHub
parent 5fe2a26908
commit b3a4b1f353

View File

@@ -7,8 +7,8 @@ _FileOrStr = Union[bytes, Text, IO[str], IO[Any]]
class parserinfo(object):
JUMP: list[str]
WEEKDAYS: list[tuple[str, str]]
MONTHS: list[tuple[str, str]]
WEEKDAYS: list[tuple[str, ...]]
MONTHS: list[tuple[str, ...]]
HMS: list[tuple[str, str, str]]
AMPM: list[tuple[str, str]]
UTCZONE: list[str]