I run vulture to test my code. An error I get from vulture is VT103:
my-lib.py:12: unused function 'method-name' (60% confidence)
I can silence this with noqa VT103. But then flake8-noqa will complain:
NQA102 "# noqa: VT103" has no matching violations
If I try to silence NQA:
then I get an error:
NQA102 "# noqa: VT103,NQA103" has no matching violations
Is there a way to instruct flake8-noqa to ignore a line?