From 9c00970c2347aaea18edda74ec8524433e9e6bb5 Mon Sep 17 00:00:00 2001 From: Matt Garber Date: Wed, 21 Aug 2024 11:22:16 -0400 Subject: [PATCH] remove ruff rule --- pyproject.toml | 3 --- 1 file changed, 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 28a5b0b1..2778f86c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -81,6 +81,3 @@ select = [ [tool.ruff.lint.per-file-ignores] "**/__init__.py" = ["F401"] # init files hold API, so not using imports is intentional "tests/**" = ["S"] # tests do suspicious stuff that's fine, actually -# ./cumulus_library/schema needs general revisiting, deferring on style maintenance -# until that occurs -"cumulus_library/schema/valueset.py" = ["E501"]