We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e76d34 commit ddecd74Copy full SHA for ddecd74
1 file changed
test-data/unit/check-modules.test
@@ -2901,11 +2901,8 @@ from stub import c # E: Module "stub" has no attribute "c"
2901
from stub import d # E: Module "stub" does not explicitly export attribute "d"
2902
2903
[file stub.pyi]
2904
-from mystery import a, b as b, c as d
2905
-
2906
-[out]
2907
-tmp/stub.pyi:1: error: Cannot find implementation or library stub for module named "mystery"
2908
-tmp/stub.pyi:1: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
+from mystery import a, b as b, c as d # E: Cannot find implementation or library stub for module named "mystery" \
+ # N: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
2909
2910
[case testPackagePath]
2911
import p
0 commit comments