From adb5e7f6a2197b5a7134319c15d3e3c87cb095d4 Mon Sep 17 00:00:00 2001 From: Daniel Eades Date: Thu, 5 Jan 2023 07:53:12 +0000 Subject: [PATCH] suppress ruff lint failures --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index c40d91b642f..63d6c336fde 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -163,6 +163,10 @@ ignore = [ # flake8-bandit "S101", # assert used "S105", # possible hardcoded password + # flake8-simplify + "SIM102", # nested 'if' statements + "SIM105", # use contextlib.suppress + "SIM117", # use single 'with' statement ] external = [ # Whitelist for RUF100 unkown code warnings "E704",