Skip to content

Commit

Permalink
ruff ignore PLW2901
Browse files Browse the repository at this point in the history
  • Loading branch information
janosh committed Mar 24, 2023
1 parent 30f2595 commit 59262ee
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,11 @@ select = [
"YTT", # flake8-2020
]
ignore = [
"B904", # Within an except clause, raise exceptions with ...
"D100", # Missing docstring in public module
"D104", # Missing docstring in public package
"D205", # 1 blank line required between summary line and description
"B904", # Within an except clause, raise exceptions with ...
"D100", # Missing docstring in public module
"D104", # Missing docstring in public package
"D205", # 1 blank line required between summary line and description
"PLW2901", # for loop variable overwritten by assignment target
]
pydocstyle.convention = "google"

Expand Down

0 comments on commit 59262ee

Please sign in to comment.