Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pre-commit.ci] pre-commit autoupdate #399

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ repos:
- id: sort-simple-yaml
- id: trailing-whitespace
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: 'v0.8.4'
rev: 'v0.9.2'
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
Expand Down
2 changes: 1 addition & 1 deletion src/scmrepo/git/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ def install_hook(self, name: str, script: str, interpreter: str = "sh") -> None:
self.hooks_dir.mkdir(exist_ok=True)
hook = self.hooks_dir / name

directive = f"#!{shutil.which(interpreter) or '/bin/sh' }"
directive = f"#!{shutil.which(interpreter) or '/bin/sh'}"
hook.write_text(f"{directive}\n{script}\n", encoding="utf-8")
hook.chmod(0o777)

Expand Down
2 changes: 1 addition & 1 deletion src/scmrepo/git/backend/pygit2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,7 @@ def _default_status(
for refname in remote_refs:
if fnmatch.fnmatch(refname, lh):
src = refname
dst = f"{rh_prefix}{refname[len(lh_prefix):]}"
dst = f"{rh_prefix}{refname[len(lh_prefix) :]}"
result[dst] = cb.result.get(
src, _default_status(src, dst, remote_refs)
)
Expand Down
2 changes: 1 addition & 1 deletion src/scmrepo/git/lfs/fetch.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def _collect_objects(
and (result := _ROOT_PATH_PREFIX_REGEX.match(path := include[0]))
):
root = result.group("prefix")
if path in {root, f'{root.rstrip("/")}/**'}:
if path in {root, f"{root.rstrip('/')}/**"}:
include = []
else:
root = "/"
Expand Down