flycheck-pycheckers will merge mypy output for the two files named controller.py. Newer versions of mypy have started reporting output for all files involved, and the mypy lint runner, although it attempts to filter them out, doesn't do this correctly. This is exacerbated by the fact that the data dictionary received in fixup_data sometimes contains a full filepath, and sometimes just the filename, within the same run of mypy.
Given the following directory structure,
flycheck-pycheckers will merge mypy output for the two files named
controller.py
. Newer versions of mypy have started reporting output for all files involved, and the mypy lint runner, although it attempts to filter them out, doesn't do this correctly. This is exacerbated by the fact that thedata
dictionary received infixup_data
sometimes contains a full filepath, and sometimes just the filename, within the same run of mypy.