from typing import Self class A: @classmethod def test(cls) -> Self: return cls() class B(A): pass a = B.test()