I am currently converting an existing codebase to mypy
.
There are ~500 type errors. I am not familiar with the code so fixing all of the errors would be time consuming.
I would like to:
- Run
mypy
- For each error listed, edit the code and add a `# type: ignore # Legacy types. Ignoring for now. See . If you edit this code, please fix the types.
What is the best way to do this?
1