Ignoring Ruff Findings¶
A typical example is when importing all PTB’s Nox sessions in your
noxfile.py, which may cause ruff to report error “F401 unused import”.
You can ignore this finding by appending a comment to the code line:
from exasol.toolbox.nox.tasks import * # noqa: F401
See also