chore: adhere to ruff's A

dont use pythjons builts in functions name as variable
This commit is contained in:
dni ⚡
2024-04-02 17:11:06 +02:00
committed by Pavol Rusnak
parent 073b117528
commit c67fcf0e45
5 changed files with 23 additions and 21 deletions
+2 -1
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.