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
In the following snippet called a.py;
import sys from pathlib import Path import pytest @pytest.mark.parametrize( "args", [ ["--disable=import-error,unused-import"], ], ) def test_a(self, tmp_path: Path, args: list[str]) -> None: for path in ("astroid.py", "hmac.py"): pylint_call = [sys.executable, "-m", "pylint"] + args + [path] print(pylint_call)
The fix for RUF05 when launched with ruff a.py --fix --select="RUF" is:
ruff a.py --fix --select="RUF"
pylint_call = [sys.executable, "-m", "pylint", *args] + [path]
Unless I'm mistaken it should be
pylint_call = [sys.executable, "-m", "pylint", *args, path]
The text was updated successfully, but these errors were encountered:
Hi, I'm looking into it.
Sorry, something went wrong.
RUF005
Successfully merging a pull request may close this issue.
In the following snippet called a.py;
The fix for RUF05 when launched with
ruff a.py --fix --select="RUF"
is:Unless I'm mistaken it should be
The text was updated successfully, but these errors were encountered: