From 9dc3367aaf281dc6511523b30ab2992629a672aa Mon Sep 17 00:00:00 2001 From: Jared Dulmage Date: Tue, 5 May 2020 14:21:40 -0600 Subject: [PATCH] Replaced "is" with "==" to avoid SyntaxWarning --- python/msprint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/msprint.py b/python/msprint.py index c7aa7aa..15d88bc 100644 --- a/python/msprint.py +++ b/python/msprint.py @@ -80,7 +80,7 @@ class output_print: except ADSBError: return - if msg.data["vs"] is 1: + if msg.data["vs"] == 1: retstr += " (aircraft is on the ground)" self._print(retstr)