Skip to content
Prev Previous commit
Next Next commit
remove == 0
  • Loading branch information
ptarjan committed Dec 26, 2025
commit 5a4235c6f070398f2630c6475aae2ac6a193868a
2 changes: 1 addition & 1 deletion pre_commit/commands/hook_impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def _ns(


def _rev_exists(rev: str) -> bool:
return subprocess.call(('git', 'cat-file', '-e', rev)) == 0
return subprocess.call(('git', 'cat-file', '-e', rev))


def _pre_push_ns(
Expand Down
Loading