Remove obsolete "E501" line in pyproject.toml (#5539)

* [skip ci] Add "E5" to [tool.ruff.lint] extend-select, remove obsolete ignore E501

* [skip ci] Remove "E5" again.
This commit is contained in:
Ralf W. Grosse-Kunstleve
2025-04-10 23:09:02 -07:00
committed by GitHub
parent 662a88cbc1
commit f3c1913827

View File

@@ -69,7 +69,6 @@ extend-select = [
]
ignore = [
"PLR", # Design related pylint
"E501", # Line too long (Black is enough)
"PT011", # Too broad with raises in pytest
"SIM118", # iter(x) is not always the same as iter(x.keys())
]