Update display to remove units if baro == none

pull/132/head
John Wyman 2 years ago
parent afd53af87b
commit 6a427c08b5

@ -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)

Loading…
Cancel
Save