Skip to content

Commit da67d3e

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
1 parent 6aa1d5e commit da67d3e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/test_primitives/test_reawaitable/test_reawaitable_concurrency.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,16 @@
66

77
async def sample_coro():
88
await anyio.sleep(0.1)
9-
return "done"
9+
return 'done'
10+
1011

1112
@pytest.mark.anyio
1213
async def test_concurrent_awaitable():
1314
reawaitable = ReAwaitable(sample_coro())
1415

1516
async def await_reawaitable():
1617
return await reawaitable
18+
1719
async with anyio.create_task_group() as tg:
1820
task1 = tg.start_soon(await_reawaitable)
1921
task2 = tg.start_soon(await_reawaitable)
20-

0 commit comments

Comments
 (0)