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
[case testGoodBaseClassSpoiled]
import a
[file a.py]
import b
class C(b.B):
pass
[file b.py]
from c import B
[file c.py]
class B:
pass
[file c.py.2]
B = 1
[out]
Currently, mypy doesn't give any error on the second run, although base class is not more valid. If I remove the re-export, then everything works fine.
The text was updated successfully, but these errors were encountered:
Consider this test case in fine grained mode:
Currently, mypy doesn't give any error on the second run, although base class is not more valid. If I remove the re-export, then everything works fine.
The text was updated successfully, but these errors were encountered: