From 6a427c08b58a654c474f1e340ba01f6aad3401d5 Mon Sep 17 00:00:00 2001 From: John Wyman Date: Sun, 14 Aug 2022 00:45:13 -0700 Subject: [PATCH] Update display to remove units if baro == none --- pyModeS/decoder/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyModeS/decoder/__init__.py b/pyModeS/decoder/__init__.py index 2b80d1f..53ecf72 100644 --- a/pyModeS/decoder/__init__.py +++ b/pyModeS/decoder/__init__.py @@ -127,7 +127,7 @@ def tell(msg: str) -> None: lnav = adsb.lnav_mode(msg) _print("Selected altitude", alt, "feet") _print("Altitude source", alt_source) - _print("Barometric pressure setting", baro, "millibars") + _print("Barometric pressure setting", baro, "" if baro == None else "millibars") _print("Selected Heading", hdg, "°") if not (common.bin2int((common.hex2bin(msg)[32:])[46]) == 0): _print("Autopilot", types_29[autopilot] if autopilot else None)