()
| 26 | |
| 27 | # tag::SPINNER_ASYNC_START[] |
| 28 | def main() -> None: # <1> |
| 29 | result = asyncio.run(supervisor()) # <2> |
| 30 | print(f'Answer: {result}') |
| 31 | |
| 32 | async def supervisor() -> int: # <3> |
| 33 | spinner = asyncio.create_task(spin('thinking!')) # <4> |
no test coverage detected