basedmypy
basedmypy copied to clipboard
Additional errors appearing when running on one file
A very specific circular import can cause the reported error to be reported differently, and the error deduplicator is affected:
- run on specific file
mypy test.py:
- expression contains Any "Untyped"
- expression contains Any "Any (unannotated)"
- run on whole project
mypy .:
- expression contains Any "Untyped"
- expression contains Any "Untyped" (removed by deduplicator)
this is especially an issue in IDEs that run mypy against a single file
TODO: insert egg