(tasks: set[asyncio.Task])
| 180 | |
| 181 | |
| 182 | def raise_task_exceptions(tasks: set[asyncio.Task]) -> None: |
| 183 | # Raise any unexpected exceptions |
| 184 | for task in tasks: |
| 185 | if not task.cancelled() and task.exception() is not None: |
| 186 | raise task.exception() |
no outgoing calls
no test coverage detected
searching dependent graphs…