[Django]-Mypy and django: error: Library stubs not installed for "six" (or incompatible with Python 3.9)

2👍

try running mypy after adding types-six to your environment:

pip install types-six

see the note in the mypy docs. the behavior of stubs has changed starting from mypy>=0.9.

Leave a comment