You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class A1:
pass
class B:
a1 = None # type: A1 # Works fine
class C:
A1 = None # type: A1 # Complains about Invalid type "A1"
A1Alias = A1
class D:
A1 = None # type: A1Alias # Works