(g: dict)
| 425 | threads: list[threading.Thread] = [] |
| 426 | |
| 427 | def _attempt(g: dict) -> None: |
| 428 | results[g["num"]] = attempt_gate(g) |
| 429 | |
| 430 | for g in remaining_gates: |
| 431 | t = threading.Thread(target=_attempt, args=(g,)) |
nothing calls this directly
no test coverage detected