While searching through a Python project, I found a few lines commented with # noqa
.
import sys
sys.path.append(r'C:\dev')
import some_module # noqa
What does noqa
mean in Python? Is it specific to Python only?
While searching through a Python project, I found a few lines commented with # noqa
.
import sys
sys.path.append(r'C:\dev')
import some_module # noqa
What does noqa
mean in Python? Is it specific to Python only?