()
| 952 | errors: list[BaseException] = [] |
| 953 | |
| 954 | def worker() -> None: |
| 955 | try: |
| 956 | barrier.wait() |
| 957 | results.append(r.current_access_token()) |
| 958 | except BaseException as e: |
| 959 | errors.append(e) |
| 960 | |
| 961 | threads = [threading.Thread(target=worker) for _ in range(8)] |
| 962 | for t in threads: |
nothing calls this directly
no test coverage detected