diff --git a/stdlib/builtins.pyi b/stdlib/builtins.pyi index 94bf8a218..63e0a0961 100644 --- a/stdlib/builtins.pyi +++ b/stdlib/builtins.pyi @@ -299,7 +299,7 @@ class int: def __index__(self) -> int: ... class float: - def __new__(cls: type[Self], x: SupportsFloat | SupportsIndex | str | ReadableBuffer = ...) -> Self: ... + def __new__(cls: type[Self], __x: SupportsFloat | SupportsIndex | str | ReadableBuffer = ...) -> Self: ... def as_integer_ratio(self) -> tuple[int, int]: ... def hex(self) -> str: ... def is_integer(self) -> bool: ...