error: Skipping analyzing ‘flask_mysqldb’: found module but no type hints or library stubs
You are getting this error because mypy is not designed to try type checking every single module you try importing. This is mainly for three reasons: The module you’re trying to import could be written in a way that it fails to type check. For example, if the module does something like my_list = [] … Read more