From 306de6aa29bd4d4d96b6dea0f0edf665d5233ecc Mon Sep 17 00:00:00 2001 From: Zsolt Ero Date: Sun, 2 Mar 2025 02:29:14 +0100 Subject: [PATCH] lint --- .ruff.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ruff.toml b/.ruff.toml index 687871b..840433a 100644 --- a/.ruff.toml +++ b/.ruff.toml @@ -3,7 +3,6 @@ line-length = 100 extend-exclude = ["temp"] - lint.select = [ "E", # pycodestyle errors "W", # pycodestyle warnings @@ -30,10 +29,11 @@ lint.ignore = [ 'F401', # unused imports 'F841', 'SIM102', + #'SIM103', # needless-bool, return the condition {condition} directly 'SIM105', 'SIM108', 'SIM115', - 'DTZ007', # Naive datetime constructed using `datetime.datetime.strptime()` without %z +# 'DTZ007', # Naive datetime constructed using `datetime.datetime.strptime()` without %z ] [format]