Initialize a file lock using the given lock file path.
(self, lock_file_path: str)
| 53 | """ |
| 54 | |
| 55 | def __init__(self, lock_file_path: str) -> None: |
| 56 | """Initialize a file lock using the given lock file path.""" |
| 57 | self.lock_file_path = lock_file_path |
| 58 | self._file_descriptor: int | None = None |
| 59 | |
| 60 | def __enter__(self) -> FileLock: |
| 61 | """Acquire the lock upon entering the context. |
nothing calls this directly
no outgoing calls
no test coverage detected