From 8a691da15c213b36e584b4ab6cec0bae72e537fc Mon Sep 17 00:00:00 2001 From: Douglas Creager Date: Tue, 16 Dec 2025 13:17:33 -0500 Subject: [PATCH] lint --- .../resources/mdtest/annotations/callable.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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