ambv / flake8-mypy

A plugin for flake8 integrating Mypy.
MIT License
101 stars 17 forks source link

Make temp file creation Windows compatible #18

Closed kaste closed 6 years ago

kaste commented 6 years ago

On Windows the temp file must be closed, otherwise mypy can't open it again. Unfortunately, we then loose the nice to read with sugar and obviously must call os.remove manually.

This is on top of #17 bc I had no way to test this otherwise.