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
fromtypingimportTypeVarclassA:
a: intclassB:
b: intT=TypeVar("T", A, B)
deffoo(t: T):
t.bifisinstance(t, B) elset.a# error: "B" has no attribute "a"ifisinstance(t, B):
t.b# no errorelse:
t.a
Uh oh!
There was an error while loading. Please reload this page.
https://mypy-play.net/?mypy=0.961&python=3.10&gist=1646ac27c8249ac4752a973d9b2b54d4
The text was updated successfully, but these errors were encountered: