While searching through a Python project, I found a few lines commented with # noqa. What does noqa mean in Python? Is it specific to Python only? Answer Adding # noqa to a line indicates that the linter (a program that automatically checks code quality) should not check this line. Any warnings that code may have generated will be ignored.