Release the lock.
(self)
| 161 | fcntl.flock(self._fd, fcntl.LOCK_EX) |
| 162 | |
| 163 | def release(self) -> None: |
| 164 | """Release the lock.""" |
| 165 | fcntl.flock(self._fd, fcntl.LOCK_UN) |
| 166 | |
| 167 | def clear(self) -> None: |
| 168 | """Close the file descriptor and remove the lock file.""" |
no outgoing calls
no test coverage detected