from __future__ import annotations class B: def f(self, a: A) -> None: # pass class A: pass