The unnecessary-literal-within-tuple-call (C409) rule detects the violation here:
ruff check --fix --unsafe-fixes fails to transform the code correctly, resulting in this, which is not a tuple:
Instead it should transform the code to:
Environment:
% ruff --version
ruff 0.3.2
% cat pyproject.toml
[tool.ruff]
lint.select = [
"C4"
]