Skip to content

Commit

Permalink
ruff fixes (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
pjbull authored Mar 11, 2024
1 parent 3c3b6a0 commit fb0f0c1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 1 addition & 2 deletions examples/usage.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""Basic usage example of repro_zipfile.
"""
"""Basic usage example of repro_zipfile."""

from pathlib import Path

Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ test = "pytest {args:tests} -v --cov=. --cov=./cli --cov-report=term --cov-repor

[tool.ruff]
line-length = 99

[tool.lint]
select = [
"E", # Pyflakes
"F", # Pycodestyle
Expand All @@ -83,7 +85,7 @@ select = [
src = ["*.py", "cli/*.py", "tests/*.py"]
unfixable = ["F"]

[tool.ruff.isort]
[tool.lint.isort]
known-first-party = ["repro_zipfile", "rpzip"]
force-sort-within-sections = true

Expand Down

0 comments on commit fb0f0c1

Please sign in to comment.