diff --git a/crates/ty_python_semantic/resources/mdtest/annotations/callable.md b/crates/ty_python_semantic/resources/mdtest/annotations/callable.md index 08a6d6f62a..34dd6e7d5d 100644 --- a/crates/ty_python_semantic/resources/mdtest/annotations/callable.md +++ b/crates/ty_python_semantic/resources/mdtest/annotations/callable.md @@ -415,7 +415,8 @@ def f_okay(c: Callable[[], None]): from ty_extensions import into_callable class Base: - def __init__(self) -> None: pass + def __init__(self) -> None: + pass class A(Base): pass