()
| 46 | future.set_result(None) |
| 47 | |
| 48 | def runner(): |
| 49 | with asyncio.Runner() as runner: |
| 50 | loop = runner.get_loop() |
| 51 | loop.set_task_factory(self.factory) |
| 52 | runner.run(main()) |
| 53 | |
| 54 | threads = [] |
| 55 |
nothing calls this directly
no test coverage detected