diff options
author | Dennis Eriksen <d@ennis.no> | 2023-11-09 14:11:35 +0100 |
---|---|---|
committer | Dennis Eriksen <d@ennis.no> | 2023-11-09 14:11:35 +0100 |
commit | e8e33997b360bfee461d5939b7c9fef5f3de6e8c (patch) | |
tree | 8f61e55c69edbd6abf140aba462bf535c83e1f22 /scripts/mqtt_watch.py | |
parent | added new function to get env (diff) | |
download | energyscripts-e8e33997b360bfee461d5939b7c9fef5f3de6e8c.tar.gz |
optimize and simplify
- use more fstrings
- use exceptions
- don't print "oh lol"
- drop tempfiles
Diffstat (limited to 'scripts/mqtt_watch.py')
-rw-r--r-- | scripts/mqtt_watch.py | 2 |
1 files changed, 1 insertions, 1 deletions
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. |