Skip to content

Commit 3e0917c

Browse files
[pre-commit.ci] pre-commit autoupdate (#399)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: skshetry <[email protected]>
1 parent 3ae999a commit 3e0917c

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.pre-commit-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ repos:
2020
- id: sort-simple-yaml
2121
- id: trailing-whitespace
2222
- repo: https://github.com/astral-sh/ruff-pre-commit
23-
rev: 'v0.8.4'
23+
rev: 'v0.9.3'
2424
hooks:
2525
- id: ruff
2626
args: [--fix, --exit-non-zero-on-fix]
2727
- id: ruff-format
2828
- repo: https://github.com/codespell-project/codespell
29-
rev: v2.3.0
29+
rev: v2.4.0
3030
hooks:
3131
- id: codespell
3232
additional_dependencies: ["tomli"]

src/scmrepo/git/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ def install_hook(self, name: str, script: str, interpreter: str = "sh") -> None:
258258
self.hooks_dir.mkdir(exist_ok=True)
259259
hook = self.hooks_dir / name
260260

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

@@ -287,7 +287,7 @@ def close(self):
287287
def no_commits(self):
288288
return not bool(self.get_ref("HEAD"))
289289

290-
# Prefer re-using the most recently used backend when possible. When
290+
# Prefer reusing the most recently used backend when possible. When
291291
# changing backends (due to unimplemented calls), we close the previous
292292
# backend to release any open git files/contexts that may cause conflicts
293293
# with the new backend.

src/scmrepo/git/backend/gitpython.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ def clone(
184184
# In fix_env, we delete LD_LIBRARY_PATH key if it was empty before
185185
# PyInstaller modified it. GitPython, in git.Repo.clone_from, uses
186186
# env to update its own internal state. When there is no key in
187-
# env, this value is not updated and GitPython re-uses
187+
# env, this value is not updated and GitPython reuses
188188
# LD_LIBRARY_PATH that has been set by PyInstaller.
189189
# See [1] for more info.
190190
# [1] https://github.com/gitpython-developers/GitPython/issues/924

src/scmrepo/git/backend/pygit2/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -720,7 +720,7 @@ def _default_status(
720720
for refname in remote_refs:
721721
if fnmatch.fnmatch(refname, lh):
722722
src = refname
723-
dst = f"{rh_prefix}{refname[len(lh_prefix):]}"
723+
dst = f"{rh_prefix}{refname[len(lh_prefix) :]}"
724724
result[dst] = cb.result.get(
725725
src, _default_status(src, dst, remote_refs)
726726
)

src/scmrepo/git/lfs/fetch.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def _collect_objects(
122122
and (result := _ROOT_PATH_PREFIX_REGEX.match(path := include[0]))
123123
):
124124
root = result.group("prefix")
125-
if path in {root, f'{root.rstrip("/")}/**'}:
125+
if path in {root, f"{root.rstrip('/')}/**"}:
126126
include = []
127127
else:
128128
root = "/"

0 commit comments

Comments
 (0)