basedmypy icon indicating copy to clipboard operation
basedmypy copied to clipboard

Additional errors appearing when running on one file

Open DetachHead opened this issue 2 years ago • 0 comments

A very specific circular import can cause the reported error to be reported differently, and the error deduplicator is affected:

  1. run on specific file mypy test.py:
  • expression contains Any "Untyped"
  • expression contains Any "Any (unannotated)"
  1. 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

DetachHead avatar Mar 02 '23 05:03 DetachHead