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 Jan 13, 2025
1 parent 7660071 commit 390a7e2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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

0 comments on commit 390a7e2

Please sign in to comment.