I am using Python 3.6 and flask. I used flask-mysqldb to connect to MySQL, but whenever I try to run mypy on my program I get this error:
Skipping analyzing 'flask_mysqldb': found module but no type hints or library stubs.
I tried running mypy with the flags ignore-missing-imports or follow-imports=skip. Then I was not getting the error. Why do I get this error?
How can I fix this without adding any additional flags?