From 94ca1fd26d95c4af1c87c0063ee4cd26020d3f9f Mon Sep 17 00:00:00 2001 From: "Haoyu (Daniel)" Date: Mon, 5 Aug 2024 20:36:00 +0800 Subject: [PATCH] fix indentation --- pyproject.toml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ac5e7045dbf..fc55eb2c571 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -218,13 +218,13 @@ ignore = [ "PLR2004", # Magic-value-comparison TODO fix these "PLW2901", # Outer for loop variable overwritten by inner assignment target "PT013", # Incorrect import of pytest - "S101", # Use of "assert" - "S110", # Log for try-except-pass - "S112", # Log for try-except-continue - "S311", # Use random module for cryptographic purposes - "S314", # Replace xml with defusedxml to avoid XML attacks - "S603", # Check source for use of "subprocess" call - "S607", # Start process with relative path + "S101", # Use of "assert" + "S110", # Log for try-except-pass + "S112", # Log for try-except-continue + "S311", # Use random module for cryptographic purposes + "S314", # Replace xml with defusedxml to avoid XML attacks + "S603", # Check source for use of "subprocess" call + "S607", # Start process with relative path "SIM105", # Use contextlib.suppress() instead of try-except-pass "TRY003", # Avoid specifying long messages outside the exception class "TRY300", # Check for return statements in try blocks