pyproject.toml: Fix deprecation warning (MR 2262)

Fixes this warning:

warning: The top-level linter settings are deprecated in favour of their counterparts in the `lint` section. Please update the following options in `pyproject.toml`:
  - 'ignore' -> 'lint.ignore'
This commit is contained in:
Newbyte 2024-02-20 13:56:38 +01:00 committed by Oliver Smith
parent a416e3ffae
commit 85f777073e
No known key found for this signature in database
GPG Key ID: 5AE7F5513E0885CB
1 changed files with 1 additions and 1 deletions

View File

@ -31,5 +31,5 @@ exclude = ["aports", "keys", "test", "test.pmb_test"]
[tool.ruff]
# E402: module import not on top of file, not possible for testcases
# E722: do not use bare except
ignore=["E402", "E722"]
lint.ignore=["E402", "E722"]
line-length=100