remove bool

This commit is contained in:
Paul Tarjan 2025-12-26 16:09:12 -07:00
parent 58cbea1156
commit 3203dd3831

View file

@ -111,11 +111,9 @@ def _ns(
def _rev_exists(rev: str) -> bool:
return not bool(
subprocess.call(
return not subprocess.call(
('git', 'cat-file', '-e', rev),
stderr=subprocess.DEVNULL,
),
)