/usr/local/lib/python3.6/site-packages/filelock
NameSizeModeActions
__pycache__/-0755rm
py.typed00644editdlrm
version.py1420644editdlrm
_api.py83820644editdlrm
_error.py3620644editdlrm
_soft.py16140644editdlrm
_unix.py14170644editdlrm
_util.py5580644editdlrm
_windows.py17290644editdlrm
__init__.py12340644editdlrm
Edit: /usr/local/lib/python3.6/site-packages/filelock/_error.py (362B)
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", ]