diff --git a/stdlib/2.7/calendar.pyi b/stdlib/2.7/calendar.pyi index d5d181387..e5ee51b2a 100644 --- a/stdlib/2.7/calendar.pyi +++ b/stdlib/2.7/calendar.pyi @@ -72,4 +72,4 @@ c = ... # type: TextCalendar def setfirstweekday(firstweekday: int) -> None: ... def format(cols: int, colwidth: int = ..., spacing: int = ...) -> str: ... def formatstring(cols: int, colwidth: int = ..., spacing: int = ...) -> str: ... -def timegm(tuple: Tuple[int]) -> int: ... +def timegm(tuple: Tuple[int, ...]) -> int: ... diff --git a/stdlib/3/calendar.pyi b/stdlib/3/calendar.pyi index b5de564f5..632ef2b92 100644 --- a/stdlib/3/calendar.pyi +++ b/stdlib/3/calendar.pyi @@ -72,4 +72,4 @@ c = ... # type: TextCalendar def setfirstweekday(firstweekday: int) -> None: ... def format(cols: int, colwidth: int = ..., spacing: int = ...) -> str: ... def formatstring(cols: int, colwidth: int = ..., spacing: int = ...) -> str: ... -def timegm(tuple: Tuple[int]) -> int: ... +def timegm(tuple: Tuple[int, ...]) -> int: ...