Created
February 13, 2026 00:23
-
-
Save mypy-play/c935f6534f859e7bca816cd158ff016e to your computer and use it in GitHub Desktop.
Shared via mypy Playground
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class A: | |
| def go(self) -> None: | |
| pass | |
| class B0: | |
| X: type[A] | None = None | |
| class B(B0): | |
| X = A | |
| def go(self) -> None: | |
| self.X().go() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment