Skip to content

Commit

Permalink
pyproject:tool.ruff.lint.ignore - ignore E741
Browse files Browse the repository at this point in the history
E741: Ambiguous variable name: `l`
  • Loading branch information
MatteoCampinoti94 committed Jan 8, 2025
1 parent 4bf739b commit cbe73d0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ ignore = [
"DTZ006", # datetime.datetime.fromtimestamp() called without a tz argument
"E501", # line to long, to many false positives, gets handled by black
"E712", # comparison to True/False, we ignore because we use sqlalchemy
"E741", # Ambiguous variable name: `l`
"FBT001", # boolean arguement in function definition
"INP001", # implicit namespace without __init__ (throws errors in tests)
"ISC001", # check for implicit concatanation of str on one line, not compatabil with black.
Expand Down

0 comments on commit cbe73d0

Please sign in to comment.