From 0d7a310007248b06f7822d3e1122416d693db956 Mon Sep 17 00:00:00 2001 From: "Nicholas (Nick) Kruzan" Date: Sun, 12 Feb 2023 06:20:42 -0600 Subject: [PATCH] Update py_common.py (#143) --- pyModeS/py_common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyModeS/py_common.py b/pyModeS/py_common.py index 42673c0..afd422e 100644 --- a/pyModeS/py_common.py +++ b/pyModeS/py_common.py @@ -231,7 +231,7 @@ def squawk(binstr: str) -> str: binstr (String): 13 bits binary string Returns: - int: altitude in ft + string: squawk code """ if len(binstr) != 13 or not set(binstr).issubset(set("01")):