🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-14 20:10:54 | PHP 8.1.34
📂
/ (Root)
/
opt
/
alt
/
python37
/
lib
/
python3.7
/
site-packages
/
filelock
📍 /opt/alt/python37/lib/python3.7/site-packages/filelock
🔄 Refresh
✏️
Editing: _error.py
Read Only
from __future__ import annotations class Timeout(TimeoutError): """Raised when the lock could not be acquired in *timeout* seconds.""" def __init__(self, lock_file: str) -> None: #: The path of the file lock. self.lock_file = lock_file def __str__(self) -> str: return f"The file lock '{self.lock_file}' could not be acquired." __all__ = [ "Timeout", ]
💾 Save Changes
❌ Cancel