From 800c63cfc67896ae88ba93e51df043fac537943c Mon Sep 17 00:00:00 2001 From: ItsDrike Date: Sat, 13 Jul 2024 13:30:11 +0200 Subject: [PATCH] ruff: Enable implicit namespace pkgs in .github/scripts --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 5218e60..f199598 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -124,6 +124,9 @@ max-statements = 250 "D", # docstrings "S101", # Use of assert ] +".github/scripts/**.py" = [ + "INP001", # Implicit namespace package +] [tool.ruff.format] line-ending = "lf"