@@ -0,0 +1,20 @@
import asyncio
def run():
for i in range(10):
print('running')
async def run_async():
await asyncio.sleep(1)
print('running async')
async def main():
await run_async()
run()
asyncio.run(main())
The note is not visible to the blocked user.