Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Aug 4, 2024
1 parent 5c7587b commit 9026ecc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ markers = [
]
testpaths = [ "tests" ]
addopts = [ "-ra", "--strict-config", "--strict-markers" ]
filterwarnings = ["error"]
filterwarnings = [ "error" ]
xfail_strict = true

[tool.towncrier]
Expand Down
2 changes: 1 addition & 1 deletion src/pipx/standalone_python.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def _unpack(full_version, download_link, archive: Path, download_dir: Path):
)

with tarfile.open(archive, mode="r:gz") as tar:
tar.extractall(download_dir, filter='data')
tar.extractall(download_dir, filter="data")


def get_or_update_index(use_cache: bool = True):
Expand Down

0 comments on commit 9026ecc

Please sign in to comment.