From e8e33997b360bfee461d5939b7c9fef5f3de6e8c Mon Sep 17 00:00:00 2001 From: Dennis Eriksen Date: Thu, 9 Nov 2023 14:11:35 +0100 Subject: optimize and simplify - use more fstrings - use exceptions - don't print "oh lol" - drop tempfiles --- scripts/mqtt_watch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/mqtt_watch.py') diff --git a/scripts/mqtt_watch.py b/scripts/mqtt_watch.py index 22105c6..f263c6d 100644 --- a/scripts/mqtt_watch.py +++ b/scripts/mqtt_watch.py @@ -16,7 +16,7 @@ mqtt_pass = common.env("el_mqtt_pass") # The callback for when the client receives a CONNACK response from the server. def on_connect(client, userdata, flags, rc): - print("Connected with result code " + str(rc)) + print(f"Connected with result code {rc}") # Subscribing in on_connect() means that if we lose the connection and # reconnect then subscriptions will be renewed. -- cgit v1.2.3