We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9213905 commit 762b283Copy full SHA for 762b283
src/async_examples/concurrency.py
@@ -32,7 +32,7 @@ async def retry_with_backoff(func, max_retries=3):
32
33
async def sorter(arr):
34
print("codeflash stdout: Sorting list")
35
- asyncio.sleep(0.00001)
+ await asyncio.sleep(0.00001)
36
for i in range(len(arr)):
37
for j in range(len(arr) - 1):
38
if arr[j] > arr[j + 1]:
0 commit comments