Skip to content

Commit

Permalink
doc: hide asyncio
Browse files Browse the repository at this point in the history
  • Loading branch information
phi-friday committed Jul 29, 2023
1 parent ee5d527 commit 06ebf3a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ async def sample_func_2(x: int) -> int:


async def main():
wrapper = get_task_group_wrapper("asyncio")
factory = get_task_group_factory("asyncio")
Semaphore = get_semaphore_class("asyncio")
wrapper = get_task_group_wrapper()
factory = get_task_group_factory()
Semaphore = get_semaphore_class()
semaphore = Semaphore(2)

start = time.perf_counter()
Expand Down

0 comments on commit 06ebf3a

Please sign in to comment.