From 12b8af3d89b636e5c73eed4df567fafa0bdea97c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Thu, 16 Apr 2026 09:18:52 -0700 Subject: [PATCH] pyproject: use UP ruff linting option --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index ee419ab90..fca7db757 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -194,6 +194,7 @@ line-length = 100 select = [ "D", # Docstring rules "I", # Import rules + "UP", # Modern Python ] ignore = [ "D105", # Missing docstring in magic methods (__str__, __repr__, etc.)