We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c473ebb commit fa212b7Copy full SHA for fa212b7
pyproject.toml
@@ -134,7 +134,9 @@ lint.ignore = [
134
135
[tool.ruff.lint.extend-per-file-ignores]
136
"qrcode/tests/*.py" = [
137
+ "F401", # Unused import
138
+ "PLC0415", # Import not at top of a file
139
+ "PT011", # pytest.raises is too broad
140
"S101", # Use of 'assert' detected
141
"S603", # `subprocess` call: check for execution of untrusted input
- "PT011", # pytest.raises is too broad
142
]
0 commit comments