Python mypy / isort type ignore for long import

Suppose you have mypy + black + isort tools, and long import line, which you need to mark as ignored for mypy. You’ll probably start doing smth like this: And after you run isort & black, you’ll end up in this situation: Which will break mypy’s type: ignore annotation. To make things work we need […]

READ MORE