We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For example:
from foo import bar, baz, quox # noqa print(quox)
results in an error like:
demo.py:1: NQA104 "# noqa" must have codes, e.g. "# noqa: F401, F401"
with F401 repeated for each occurrence. However in practise only a single occurrence is needed to ignore the error.
F401
The text was updated successfully, but these errors were encountered:
6a95285
No branches or pull requests
For example:
results in an error like:
with
F401
repeated for each occurrence.However in practise only a single occurrence is needed to ignore the error.
The text was updated successfully, but these errors were encountered: