| 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 |
no outgoing calls