MCPcopy Create free account
hub / github.com/tox-dev/filelock / MySoftFileLock

Class MySoftFileLock

tests/test_filelock.py:808–819  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

806 MyFileLock(str(lock_path), my_param=1)
807
808 class MySoftFileLock(SoftFileLock):
809 def __init__(
810 self,
811 lock_file: str | os.PathLike[str],
812 timeout: float = -1,
813 mode: int = 0o644,
814 thread_local: bool = True,
815 my_param: int = 0,
816 **kwargs: dict[str, Any], # ruff:ignore[unused-method-argument] # matches the base constructor signature; extras are dropped
817 ) -> None:
818 super().__init__(lock_file, timeout, mode, thread_local, blocking=True, is_singleton=True)
819 self.my_param = my_param
820
821 MySoftFileLock(str(lock_path), my_param=1)
822

Callers 1

Calls

no outgoing calls

Tested by 1