Skip to content

Commit

Permalink
expand to README too
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD authored Jan 30, 2024
1 parent 3cfadbb commit 79165ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ async def run_multiple_sleeps(sleep_durations):

progress_bar.unsubscribe(callback_id)

n = 10**5
sleep_durations = [random.uniform(0, 5.0) for _ in range(n)]
number_of_tasks = 10**5
sleep_durations = [random.uniform(0, 5.0) for _ in range(number_of_tasks)]
asyncio.run(run_multiple_sleeps(sleep_durations=sleep_durations))
```

Expand Down

0 comments on commit 79165ca

Please sign in to comment.