(self, lock_file, *args, **kwargs)
| 45 | """Thread lock until a file **cannot** be locked""" |
| 46 | |
| 47 | def __init__(self, lock_file, *args, **kwargs): |
| 48 | self.filelock = FileLock(lock_file) |
| 49 | super().__init__(lock_file, *args, **kwargs) |
| 50 | self._lock_file_fd = None |
| 51 | |
| 52 | def _acquire(self): |
| 53 | try: |