()
| 1111 | _release = _acquire |
| 1112 | |
| 1113 | def acquire() -> None: |
| 1114 | try: |
| 1115 | BlockingTransitionLock(str(tmp_path / "transition.lock"), is_singleton=False).acquire(timeout=0) |
| 1116 | except Timeout: |
| 1117 | finished.set() |
| 1118 | |
| 1119 | worker = threading.Thread(target=acquire) |
| 1120 | worker.start() |
nothing calls this directly
no test coverage detected