From 50566320c33e1df065ca2ffef99046f9f2f7bff3 Mon Sep 17 00:00:00 2001 From: Jan-Niklas Burfeind Date: Thu, 22 Feb 2024 12:06:41 +0100 Subject: [PATCH] ci: Update deprecated ruff settings in favor of their new pendants in the lint-section. This gets rid of warnings in ruffs execution. --- ruff.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ruff.toml b/ruff.toml index 47e236119..590149018 100644 --- a/ruff.toml +++ b/ruff.toml @@ -1,6 +1,6 @@ -select = ["E", "F", "G004", "W"] +lint.select = ["E", "F", "G004", "W"] extend-exclude = ["docs", "nodeset", "schemas", "*_auto.py", "event_objects.py", "standard_address_space_services.py"] line-length = 999 -[per-file-ignores] +[lint.per-file-ignores] "__init__.py" = ["F401", "F403"] "examples/*" = ["F841", "E402"]