()
| 547 | result = [None] |
| 548 | |
| 549 | def _run(): |
| 550 | result[0] = asyncio.run( |
| 551 | self._generate_async(processed_messages, all_kwargs) # noqa: F821 |
| 552 | ) |
| 553 | |
| 554 | thread = threading.Thread(target=_run) |
| 555 | thread.start() |
nothing calls this directly
no test coverage detected