From 85f777073e266156f312b0ecf4a55e766bee97bc Mon Sep 17 00:00:00 2001 From: Newbyte Date: Tue, 20 Feb 2024 13:56:38 +0100 Subject: [PATCH] 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' --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 5e60f34f..4bf8ed3f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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