From 23bbbf607e3f2aa88e9b7be08ae95da536f83a96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Mazzucotelli?= Date: Thu, 16 Jan 2025 21:21:12 +0100 Subject: [PATCH] ci: Ignore Ruff's A005 --- config/ruff.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/config/ruff.toml b/config/ruff.toml index d3ad4625..1e1b54bf 100644 --- a/config/ruff.toml +++ b/config/ruff.toml @@ -8,6 +8,7 @@ exclude = [ select = ["ALL"] ignore = [ "A001", # Variable is shadowing a Python builtin + "A005", # Module shadows a Python standard-library module "ANN101", # Missing type annotation for self "ANN102", # Missing type annotation for cls "ANN204", # Missing return type annotation for special method __str__