diff --git a/CH_02_01_end.py b/CH_02_01_end.py index b79aaf9..e86b0a1 100644 --- a/CH_02_01_end.py +++ b/CH_02_01_end.py @@ -33,7 +33,7 @@ async def main(): fetch_coroutines = [] for url in urls: fetch_coroutines.append(fetch_args(session, url)) - # waik up coroutines with gather + # wake up coroutines with gather data = await asyncio.gather(*fetch_coroutines) pprint(data)