Skip to content

Commit 0e51c97

Browse files
committed
STY: do not use the forbidden (but valid syntactically) quotes
1 parent db8f8d2 commit 0e51c97

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bluesky/callbacks/zmq.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,8 +231,8 @@ def __init__(self, in_address=None, out_address=None, *, zmq=None):
231231
context.destroy()
232232
raise
233233
else:
234-
self.in_port = in_port.addr if hasattr(in_port, 'addr') else in_port
235-
self.out_port = out_port.addr if hasattr(out_port, 'addr') else out_port
234+
self.in_port = in_port.addr if hasattr(in_port, "addr") else in_port
235+
self.out_port = out_port.addr if hasattr(out_port, "addr") else out_port
236236
self._frontend = frontend
237237
self._backend = backend
238238
self._context = context

0 commit comments

Comments
 (0)