chore: adhere to ruff's A

dont use pythjons builts in functions name as variable
This commit is contained in:
dni ⚡ 2024-04-01 19:53:30 +02:00 committed by Pavol Rusnak
parent 073b117528
commit c67fcf0e45
5 changed files with 23 additions and 21 deletions

View file

@ -163,7 +163,8 @@ extend-exclude = [
# E - pycodestyle errors
# W - pycodestyle warnings
# I - isort
select = ["F", "E", "W", "I"]
# A - flake8-builtins
select = ["F", "E", "W", "I", "A"]
ignore = []
# Allow autofix for all enabled rules (when `--fix`) is provided.