Increase padding on _print to fit baro

This commit is contained in:
John Wyman 2022-08-14 00:34:17 -07:00
parent 6b4a5bdaf3
commit afd53af87b

View File

@ -2,7 +2,7 @@ def tell(msg: str) -> None:
from pyModeS import common, adsb, commb, bds from pyModeS import common, adsb, commb, bds
def _print(label, value, unit=None): def _print(label, value, unit=None):
print("%20s: " % label, end="") print("%28s: " % label, end="")
print("%s " % value, end="") print("%s " % value, end="")
if unit: if unit:
print(unit) print(unit)