diff --git a/crates/ty_python_semantic/resources/mdtest/annotations/self.md b/crates/ty_python_semantic/resources/mdtest/annotations/self.md index dfc0e39dd1..a368d5425a 100644 --- a/crates/ty_python_semantic/resources/mdtest/annotations/self.md +++ b/crates/ty_python_semantic/resources/mdtest/annotations/self.md @@ -313,7 +313,7 @@ python-version = "3.11" ```py class Explicit: - # TODO: Should warn the user if self is overriden with a type that is not subtype of the class + # TODO: We could emit a warning if the annotated type of `self` is disjoint from `Explicit` def bad(self: int) -> None: reveal_type(self) # revealed: int