From b3a4b1f3532ae000e4e350908e30087d44952eab Mon Sep 17 00:00:00 2001 From: Joseph Young <80432516+jpy-git@users.noreply.github.com> Date: Sat, 25 Dec 2021 09:18:38 +0000 Subject: [PATCH] python-datetutil: WEEKDAYS and MONTHS can have arbitrary length tuples (#6689) --- stubs/python-dateutil/dateutil/parser/__init__.pyi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stubs/python-dateutil/dateutil/parser/__init__.pyi b/stubs/python-dateutil/dateutil/parser/__init__.pyi index a408f649b..7782cc007 100644 --- a/stubs/python-dateutil/dateutil/parser/__init__.pyi +++ b/stubs/python-dateutil/dateutil/parser/__init__.pyi @@ -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]