Skip to content

Commit

Permalink
fix errors reported by ruff (#353)
Browse files Browse the repository at this point in the history
  • Loading branch information
karmacoma-eth authored Aug 26, 2024
1 parent 23f2140 commit 8e348b2
Show file tree
Hide file tree
Showing 12 changed files with 510 additions and 274 deletions.
13 changes: 13 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,16 @@ target-version = ["py311", "py312"]
# TODO: re-add test_traces.py when we have a better way to support it in CI
addopts = "--ignore=tests/lib --ignore=tests/test_traces.py"
# addopts = "--ignore=tests/lib"

[tool.ruff.lint]
select = [
"E", # pycodestyle
"F", # pyflakes
"UP", # pyupgrade
"B", # flake8-bugbear
"SIM",# flake8-simplify
"I", # isort
]
ignore = [
"E501", # line too long
]
Loading

0 comments on commit 8e348b2

Please sign in to comment.