Skip to content

Commit 9111100

Browse files
committed
pre-commit run
1 parent 7dd8b7f commit 9111100

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

examples/recv_into/recv_into_array.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,9 @@ def main() -> None:
1515
B = np.empty_like(A)
1616
assert not (A == B).all()
1717

18-
with (
19-
zmq.Context() as ctx,
20-
ctx.socket(zmq.PUSH) as push,
21-
ctx.socket(zmq.PULL) as pull,
22-
):
18+
with zmq.Context() as ctx, ctx.socket(zmq.PUSH) as push, ctx.socket(
19+
zmq.PULL
20+
) as pull:
2321
push.bind(url)
2422
pull.connect(url)
2523
print("sending:\n", A)

0 commit comments

Comments
 (0)