Merge pull request #167 from darksidelemm/testing

Tweaks to min decoder spacing logic.
pull/168/head^2
Mark Jessop 2019-05-01 18:55:57 +09:30 zatwierdzone przez GitHub
commit 9f18d6d95a
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -199,7 +199,7 @@ def start_decoder(freq, sonde_type):
for _key in autorx.task_list.keys():
# Iterate through the task list, and only attempt to compare with those that are a decoder task.
# This is indicated by the task key being an integer (the sonde frequency).
if type(_key) == int:
if (type(_key) == int) or (type(_key) == float):
# Extract the currently decoded sonde type from the currently running decoder.
_decoding_sonde_type = autorx.task_list[_key]['task'].sonde_type