From 0a17d98781f6fea2928e05881da12ecfaa286281 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torma=20Krist=C3=B3f?= Date: Sun, 25 Apr 2021 12:34:17 +0200 Subject: [PATCH] pep8 --- zmq/consumer.py | 2 +- zmq/publisher.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/zmq/consumer.py b/zmq/consumer.py index 6865f24..d3b9cb3 100644 --- a/zmq/consumer.py +++ b/zmq/consumer.py @@ -18,4 +18,4 @@ try: DATETIMES.append(datetime.now()) except KeyboardInterrupt: socket.close() - print(DATETIMES) \ No newline at end of file + print(DATETIMES) diff --git a/zmq/publisher.py b/zmq/publisher.py index 39d551b..edfa999 100644 --- a/zmq/publisher.py +++ b/zmq/publisher.py @@ -12,4 +12,4 @@ try: while True: socket.send_string(f"test {msg_body}") except KeyboardInterrupt: - socket.close() \ No newline at end of file + socket.close()