From 5c5f1567d33f3ec0e16eb47af4814fd9f5c2796d Mon Sep 17 00:00:00 2001 From: Piotr Roslaniec Date: Tue, 7 Nov 2023 11:04:30 +0100 Subject: [PATCH] chore(ruff): use nucypher-compatible ruff rules --- ferveo-python/pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ferveo-python/pyproject.toml b/ferveo-python/pyproject.toml index 610492e4..2532c800 100644 --- a/ferveo-python/pyproject.toml +++ b/ferveo-python/pyproject.toml @@ -2,5 +2,5 @@ requires = ["setuptools", "wheel", "setuptools-rust"] [tool.ruff] -exclude = ["ferveo/__init__.py"] - +exclude = ["ferveo/__init__.py"] # false-positive unused-import +select = ["E", "F", "I"]