Remove exception for lint (MR 2328)

There are no violations of this lint any more. This lint only checks
that an import is the beginning of a block; it will not be a problem if
a test needs to include an import.
This commit is contained in:
Hugo Osvaldo Barrera 2024-06-23 17:44:24 +02:00
parent 8398bc1218
commit fa2a7c502d
No known key found for this signature in database
GPG key ID: 5AE7F5513E0885CB

View file

@ -32,8 +32,6 @@ exclude = ["aports", "docs", "keys", "test", "test.pmb_test"]
line-length=100
# Assume Python 3.9
target-version = "py39"
# E402: module import not on top of file, not possible for testcases
lint.ignore=["E402"]
[tool.ruff.lint.extend-per-file-ignores]
# F401: imported but unused, common for __init__.py files