diff --git a/crates/ty_python_semantic/resources/mdtest/generics/pep695/functions.md b/crates/ty_python_semantic/resources/mdtest/generics/pep695/functions.md index 1b8d82688e..aba0aef683 100644 --- a/crates/ty_python_semantic/resources/mdtest/generics/pep695/functions.md +++ b/crates/ty_python_semantic/resources/mdtest/generics/pep695/functions.md @@ -622,7 +622,7 @@ class ClassWithNewAndInit: def __new__(cls, *args, **kwargs) -> Self: raise NotImplementedError - def __init__(self, x: int) -> None: ... + def __init__(self) -> None: ... # revealed: ClassWithNewAndInit reveal_type(accepts_callable(ClassWithNewAndInit)())