(self, lock_path: str | Path)
| 9 | |
| 10 | class FileLock: |
| 11 | def __init__(self, lock_path: str | Path): |
| 12 | self.lock_path = Path(lock_path) |
| 13 | self.lock_file = None |
| 14 | |
| 15 | def __enter__(self): |
| 16 | self.lock_file = open(self.lock_path, "w") |
nothing calls this directly
no outgoing calls
no test coverage detected