Skip to content

Commit 614988d

Browse files
committed
Oops, forgot to lint
1 parent 19b39bb commit 614988d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/integration/test_mixed_concurrency.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ async def start_server(self):
3030
await sleep(0.1)
3131

3232
async def asyncSetUp(self):
33-
if sys.version_info>=(3,11,0):
33+
if sys.version_info >= (3, 11, 0):
3434
async with asyncio.timeout(delay=2):
3535
asyncio.create_task(self.start_server())
3636
await asyncio.sleep(0.1)
@@ -40,7 +40,7 @@ async def asyncSetUp(self):
4040

4141
async def test_asyncio(self):
4242
context = AsyncioContext("pva")
43-
if sys.version_info>=(3,11,0):
43+
if sys.version_info >= (3, 11, 0):
4444
async with asyncio.timeout(delay=2):
4545
value = await context.get("demo:a")
4646
else:

0 commit comments

Comments
 (0)