From afd53af87b0a19f57c9b5d2491604a260b979863 Mon Sep 17 00:00:00 2001 From: John Wyman Date: Sun, 14 Aug 2022 00:34:17 -0700 Subject: [PATCH] Increase padding on _print to fit baro --- 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 aa4b901..2b80d1f 100644 --- a/pyModeS/decoder/__init__.py +++ b/pyModeS/decoder/__init__.py @@ -2,7 +2,7 @@ def tell(msg: str) -> None: from pyModeS import common, adsb, commb, bds def _print(label, value, unit=None): - print("%20s: " % label, end="") + print("%28s: " % label, end="") print("%s " % value, end="") if unit: print(unit)