From 9d3851f065be2680496b5a9cfe2769b73824cb83 Mon Sep 17 00:00:00 2001 From: SophieCurinier Date: Wed, 18 Sep 2024 16:31:24 -0400 Subject: [PATCH] [GEOPY-1712] Exclude RUF005 --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 720beea..0199690 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -130,6 +130,8 @@ ignore = [ "B028", # no-explicit-stacklevel for warnings.warn() "E501", # line-too-long - code is reformatted (do not care about comments and docstring) "F401", # unsused-import - covered by pycln + "RUF005", # collection-literal-concatenation - wrong suggestion with numpy arrays + ] select = [ "A", # flake8-builtins