Skip to content
Merged

Fix ruff #12515

Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,6 @@ lint.ignore = [
"UP038", # Use `X | Y` in `{}` call instead of `(X, Y)` -- DO NOT FIX
]

lint.flake8-builtins.builtins-allowed-modules = ["base64", "wave"]

lint.per-file-ignores."data_structures/hashing/tests/test_hash_map.py" = [
"BLE001",
]
Expand All @@ -149,6 +147,8 @@ lint.per-file-ignores."project_euler/problem_099/sol1.py" = [
lint.per-file-ignores."sorts/external_sort.py" = [
"SIM115",
]
lint.flake8-builtins.builtins-allowed-modules = [ "base64", "wave" ]

lint.mccabe.max-complexity = 17 # default: 10
lint.pylint.allow-magic-value-types = [
"float",
Expand Down
Loading