Skip to content

Commit

Permalink
fix(ruff): add missing , (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
hairmare authored Mar 11, 2024
1 parent f06e7a4 commit d43daaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scaffolder-skeletons/ruff/ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ ignore = [
"D", # pydocstyle is optional for tests
"ANN", # flake8-annotations are optional for tests
"S101", # assert is allow in tests
"S108" # /tmp is allowed in tests since it's expected to be mocked
"S108", # /tmp is allowed in tests since it's expected to be mocked
"DTZ001", # tests often run in UTC
"INP001", # tests do not need a dunder init
]
Expand Down

0 comments on commit d43daaa

Please sign in to comment.