We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b85dc9 commit b3538a0Copy full SHA for b3538a0
1 file changed
asyncio_tutorial/part_I_asyncio_intro/__init__.py
@@ -17,8 +17,8 @@ async def asyncio_intro_tutorial(start_time: float):
17
:param float start_time: Counter representing the time the script was initialized.
18
"""
19
LOGGER.info(f"Asyncio tutorial Part I: Intro to Asyncio.")
20
- task_list = []
21
future = register_future()
+ task_list = []
22
for i in range(3):
23
task = await create_task(simple_coroutine(i, delay=1))
24
task_list.append(task)
0 commit comments