typing_copilot icon indicating copy to clipboard operation
typing_copilot copied to clipboard

Missing imports sections don't always show the parent module.

Open obi1kenobi opened this issue 4 years ago • 0 comments

It's possible to get typing_copilot to generate mypy.ini files including lines like this:

[mypy-schematics.types.*]
ignore_missing_imports = True

This can make for overly verbose mypy.ini files, if multiple submodule paths like this are individually suppressed. Since it's very likely in that case that the entire schematics package is missing type hints, we should simplify that to the following:

[mypy-schematics.*]
ignore_missing_imports = True

obi1kenobi avatar Nov 06 '20 21:11 obi1kenobi