From 4426391e75c3c9625cac4382410b1f50e2f46d53 Mon Sep 17 00:00:00 2001 From: Jan David Mol <mol@astron.nl> Date: Tue, 8 Oct 2024 17:26:01 +0200 Subject: [PATCH] black --- tangostationcontrol/tangostationcontrol/zeromq/publisher.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tangostationcontrol/tangostationcontrol/zeromq/publisher.py b/tangostationcontrol/tangostationcontrol/zeromq/publisher.py index cc4580db1..124fa861c 100644 --- a/tangostationcontrol/tangostationcontrol/zeromq/publisher.py +++ b/tangostationcontrol/tangostationcontrol/zeromq/publisher.py @@ -105,7 +105,9 @@ class ZeroMQPublisher: try: now = datetime.now().astimezone(tz=timezone.utc).isoformat() for topic in self._topics: - logger.debug("Publisher send message with payload of size: %s", len(msg)) + logger.debug( + "Publisher send message with payload of size: %s", len(msg) + ) msg = [topic, now.encode("utf-8"), f"{msg}".encode("utf-8")] self._publisher.send_multipart(msg) finally: -- GitLab