Skip to content

Commit

Permalink
Fix broken ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
olethanh committed Nov 20, 2024
1 parent bb4f6cd commit 0e13d9e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -191,15 +191,16 @@ lint.ignore = [
# Allow the use of assert statements
"S101",
]
# Tests can use magic values, assertions, and relative imports
lint.per-file-ignores."tests/**/*" = [ "PLR2004", "S101", "TID252" ]
#[tool.ruff.flake8-tidy-imports]
#ban-relative-imports = "all"
#unfixable = [
# # Don't touch unused imports
# "F401",
#]
lint.isort = [ "aleph.vm" ]
#lint.isort = [ "aleph.vm" ]

# Tests can use magic values, assertions, and relative imports
lint.per-file-ignores."tests/**/*" = [ "PLR2004", "S101", "TID252" ]

[tool.pytest.ini_options]
pythonpath = [
Expand Down

0 comments on commit 0e13d9e

Please sign in to comment.