Clean up spaces

pull/304/head
Ilias Daradimos 2020-10-06 04:31:50 +03:00
rodzic f2be000ba2
commit 950e073f5a
2 zmienionych plików z 9 dodań i 9 usunięć

Wyświetl plik

@ -175,7 +175,6 @@ class SondeDecoder(object):
self.rs41_drift_tweak = rs41_drift_tweak
self.experimental_decoder = experimental_decoder
self.imet_location = imet_location
self.telemetry = {}
# iMet ID store. We latch in the first iMet ID we calculate, to avoid issues with iMet-1-RS units
# which don't necessarily have a consistent packet count to time increment ratio.
@ -1162,11 +1161,11 @@ class SondeDecoder(object):
_exporter(_telemetry)
except Exception as e:
self.log_error("Exporter Error %s" % str(e))
self.telemetry = _telemetry
return _telem_ok
def log_debug(self, line):
""" Helper function to log a debug message with a descriptive heading.
""" Helper function to log a debug message with a descriptive heading.
Args:
line (str): Message to be logged.
"""
@ -1203,16 +1202,13 @@ class SondeDecoder(object):
self.decoder.join()
def running(self):
""" Check if the decoder subprocess is running.
""" Check if the decoder subprocess is running.
Returns:
bool: True if the decoder subprocess is running.
"""
return self.decoder_running
def getTelemetry(self):
""" Return telemetry data """
return self.telemetry
if __name__ == "__main__":
# Test script.

Wyświetl plik

@ -291,7 +291,7 @@ def shutdown_flask(shutdown_key):
@app.route("/start_decoder", methods=["POST"])
def flask_start_decoder():
""" Inject a scan result, which will cause a decoder to be started if there
are enough resources (SDRs) to do so.
are enough resources (SDRs) to do so.
Example:
curl -d "type=DFM&freq=403240000" -X POST http://localhost:5000/start_decoder
"""
@ -310,7 +310,7 @@ def flask_start_decoder():
@app.route("/stop_decoder", methods=["POST"])
def flask_stop_decoder():
""" Request that a decoder process be halted.
""" Request that a decoder process be halted.
Example:
curl -d "freq=403250000" -X POST http://localhost:5000/stop_decoder
"""
@ -495,6 +495,10 @@ class WebExporter(object):
"WebExporter - JSON object missing required field %s" % _field
)
return
==== BASE ====
_telem = telemetry.copy()
==== BASE ====
_telem = telemetry.copy()