From 3420b64469948cea0f0bf27f0d7e4dd2fa55570c Mon Sep 17 00:00:00 2001 From: Adrian Moennich Date: Thu, 29 Feb 2024 16:45:59 +0100 Subject: [PATCH] Adapt to ruff v0.3.0 --- ruff.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/ruff.toml b/ruff.toml index 25d6e4c..e4939a3 100644 --- a/ruff.toml +++ b/ruff.toml @@ -61,7 +61,6 @@ ignore = [ 'S404', # useless, triggers on *all* subprocess imports 'S403', # there's already a warning on using pickle, no need to have one for the import 'S405', # we don't use lxml in unsafe ways - 'S410', # we don't use lxml in unsafe ways 'S603', # useless, triggers on *all* subprocess calls: https://github.com/astral-sh/ruff/issues/4045 'S607', # we trust the PATH to be sane 'B011', # we don't run python with `-O` (also see S101)