Release the lock on the file, allowing any other Certbot instance to acquire it.
(self)
| 60 | self._lock_mechanism.acquire() |
| 61 | |
| 62 | def release(self) -> None: |
| 63 | """ |
| 64 | Release the lock on the file, allowing any other Certbot instance to acquire it. |
| 65 | """ |
| 66 | self._lock_mechanism.release() |
| 67 | |
| 68 | def is_locked(self) -> bool: |
| 69 | """ |
no outgoing calls