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
from __future__ import annotations | |
from contextlib import suppress | |
from typing import Any, ClassVar | |
from typing_extensions import reveal_type | |
class Foo: ... | |
class SubFoo(Foo): | |
def bar(self) -> int: return 5 |