(self, path: Path, default_factory: Callable[[], Any])
| 21 | _replace_retry_delays = (0.05, 0.1, 0.2, 0.35, 0.5) |
| 22 | |
| 23 | def __init__(self, path: Path, default_factory: Callable[[], Any]) -> None: |
| 24 | self.path = path |
| 25 | self.default_factory = default_factory |
| 26 | self._lock = threading.Lock() |
| 27 | |
| 28 | def read(self) -> Any: |
| 29 | with self._lock: |
nothing calls this directly
no outgoing calls
no test coverage detected