Skip to content

Commit

Permalink
ignore annoying stack level warning
Browse files Browse the repository at this point in the history
  • Loading branch information
willingc committed Nov 17, 2023
1 parent dbd236f commit af6ab4d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -289,15 +289,16 @@ ignore = [
# Assigning lambda expression
"E731",
# Do not use variables named ‘l’, ‘O’, or ‘I’
"E741"
"E741",
"B028"
]
target-version = "py310"

[tool.ruff.per-file-ignores]
"__init__.py" = ["F401"]
"papermill/cli.py" = ["C408"]
"papermill/engines.py" = ["C408"]
"papermill/iorw.py" = ["B018", "B006","UP038","B904","C408"]
"papermill/iorw.py" = ["B018", "B006","UP038","B904","C408","B028"]
"papermill/parameterize.py" = ["B904"]
"papermill/s3.py" = ["C416","UP038","B007","B028"]
"papermill/tests/test_cli.py" = ["C408"]
Expand Down

0 comments on commit af6ab4d

Please sign in to comment.