1
0
Fork 0
Code Issues Pull requests Projects Releases 2 Packages Wiki Activity Actions Pages

Enforce strict Pyright gate

This commit is contained in:
Andraxion 2026-07-24 22:26:01 -04:00
parent 90898cfd63
commit 2841042b9c
16 changed files with 214 additions and 77 deletions

View file

@ -6,7 +6,7 @@ import fcntl
import json
import os
import tempfile
from collections.abc import Iterator
from collections.abc import Generator
from contextlib import contextmanager
from pathlib import Path
from typing import Any
@ -517,7 +517,7 @@ class ChangesetStore:
return root
@contextmanager
def _lock(self) -> Iterator[None]:
def _lock(self) -> Generator[None]:
root = self._root()
lock_path = root / ".lock"
try: