diff --git a/stdlib/builtins.pyi b/stdlib/builtins.pyi index 7d30576a5..095921f6b 100644 --- a/stdlib/builtins.pyi +++ b/stdlib/builtins.pyi @@ -642,7 +642,7 @@ class memoryview(Sized, Sequence[int]): def __exit__( self, exc_type: Type[BaseException] | None, exc_val: BaseException | None, exc_tb: TracebackType | None ) -> None: ... - def cast(self, format: str, shape: list[int] | Tuple[int] = ...) -> memoryview: ... + def cast(self, format: str, shape: list[int] | Tuple[int, ...] = ...) -> memoryview: ... @overload def __getitem__(self, i: SupportsIndex) -> int: ... @overload