From d6a3325d3524fd4a755b919673f7e06f1b35c0ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Ra=C3=9Fmann?= Date: Wed, 26 Jul 2023 09:51:53 +0200 Subject: [PATCH] simplify my solution --- owrx/js8.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/owrx/js8.py b/owrx/js8.py index b4b229e3..f05204db 100644 --- a/owrx/js8.py +++ b/owrx/js8.py @@ -99,10 +99,7 @@ class Js8Parser(AudioChopperParser): frame = Js8().parse_message(msg) - if "ssid" in frame.source: - callsign = "{callsign}-{ssid}".format(frame.source) - else: - callsign = frame.source["callsign"] + callsign = frame.source["callsign"] self.pushDecode(band)