(cc_list: list[str])
| 32 | |
| 33 | # tag::FLAGS_ASYNCIO_START[] |
| 34 | def download_many(cc_list: list[str]) -> int: # <1> |
| 35 | return asyncio.run(supervisor(cc_list)) # <2> |
| 36 | |
| 37 | async def supervisor(cc_list: list[str]) -> int: |
| 38 | async with AsyncClient() as client: # <3> |
nothing calls this directly
no test coverage detected