From 069ff947c89941c0d2725c955d5cf159e52c57c7 Mon Sep 17 00:00:00 2001 From: Hemna Date: Fri, 3 Sep 2021 17:10:38 -0400 Subject: [PATCH] Cleaned up pep8 error --- AUTHORS | 1 + ChangeLog | 10 ++++++++++ aprsd_weewx_plugin/aprsd_weewx_plugin.py | 1 - 3 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 AUTHORS create mode 100644 ChangeLog diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..cc71ac7 --- /dev/null +++ b/AUTHORS @@ -0,0 +1 @@ +Hemna diff --git a/ChangeLog b/ChangeLog new file mode 100644 index 0000000..1d8382e --- /dev/null +++ b/ChangeLog @@ -0,0 +1,10 @@ +CHANGES +======= + +v0.1.0 +------ + +* updated setup.cfg +* first hack at it working +* Switched to pbr +* First checkin diff --git a/aprsd_weewx_plugin/aprsd_weewx_plugin.py b/aprsd_weewx_plugin/aprsd_weewx_plugin.py index 477d46d..159222f 100644 --- a/aprsd_weewx_plugin/aprsd_weewx_plugin.py +++ b/aprsd_weewx_plugin/aprsd_weewx_plugin.py @@ -146,7 +146,6 @@ class WeewxMQTTThread(threads.APRSDThread): client.subscribe("weather/loop") def on_message(self, client, userdata, msg): - #LOG.info(msg.payload) wx_data = json.loads(msg.payload) LOG.debug(f"Got WX data {wx_data}") mqtt_queue.put(wx_data)