This commit is contained in:
Zsolt Ero
2025-03-02 02:29:14 +01:00
parent b2802a4e3a
commit 306de6aa29

View File

@@ -3,7 +3,6 @@ line-length = 100
extend-exclude = ["temp"] extend-exclude = ["temp"]
lint.select = [ lint.select = [
"E", # pycodestyle errors "E", # pycodestyle errors
"W", # pycodestyle warnings "W", # pycodestyle warnings
@@ -30,10 +29,11 @@ lint.ignore = [
'F401', # unused imports 'F401', # unused imports
'F841', 'F841',
'SIM102', 'SIM102',
#'SIM103', # needless-bool, return the condition {condition} directly
'SIM105', 'SIM105',
'SIM108', 'SIM108',
'SIM115', 'SIM115',
'DTZ007', # Naive datetime constructed using `datetime.datetime.strptime()` without %z # 'DTZ007', # Naive datetime constructed using `datetime.datetime.strptime()` without %z
] ]
[format] [format]