Skip to content

Commit 83cde40

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent ed08fa3 commit 83cde40

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_async.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ async def test_context():
1616
context = zmq.Context()
1717
a, b = Socket(context, zmq.PAIR), Socket(context, zmq.PAIR)
1818
port = a.bind_to_random_port("tcp://127.0.0.1")
19-
b.connect(f'tcp://127.0.0.1:{port}')
19+
b.connect(f"tcp://127.0.0.1:{port}")
2020
a.send(b"Hello")
2121
assert b.recv() == b"Hello"
2222
async with a, b:
@@ -35,8 +35,8 @@ async def test_context():
3535
# assert KM is not None
3636
# KC.stop_channels()
3737
# KM.shutdown_kernel(now=True)
38-
#
39-
#
38+
#
39+
#
4040
# def test_async_await():
4141
# flush_channels(KC)
4242
# msg_id, content = execute("import asyncio; await asyncio.sleep(0.1)", KC)

0 commit comments

Comments
 (0)