Skip to content

Commit

Permalink
update RUFF so that we can commit things
Browse files Browse the repository at this point in the history
  • Loading branch information
pibion committed Apr 11, 2024
1 parent 7a54ea3 commit 252bf07
Show file tree
Hide file tree
Showing 2 changed files with 423 additions and 374 deletions.
8 changes: 7 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ packages = [

[tool.poetry.dependencies]
python = ">=3.9,<3.12"
tensorflow = "*"
tensorflow = "*"
numpy = "*"
utils = "*"
tqdm = "^4.66.2"
Expand Down Expand Up @@ -92,6 +92,12 @@ ignore = [
"E501",
# DoNotAssignLambda
"E731",
# VariableAssignedButNotUsed
"F841",
# LoopControlVarNotUsed
"B007",
# UnnecessaryListCall
"C408",
]

[tool.ruff.format]
Expand Down
Loading

0 comments on commit 252bf07

Please sign in to comment.