From 5a9504b59a572f74f0e540992a693739c0304a4b Mon Sep 17 00:00:00 2001 From: Adeeb Shihadeh Date: Tue, 18 May 2021 19:35:32 -0700 Subject: [PATCH] fix linter old-commit-hash: 6b4e49af0ea9ea29493a7f4006a5c0cb5c92ad78 --- selfdrive/locationd/test/print_gps_stats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selfdrive/locationd/test/print_gps_stats.py b/selfdrive/locationd/test/print_gps_stats.py index b5e89993a..cfddb7f8b 100755 --- a/selfdrive/locationd/test/print_gps_stats.py +++ b/selfdrive/locationd/test/print_gps_stats.py @@ -14,7 +14,7 @@ if __name__ == "__main__": for m in ug.measurementReport.measurements: cnos.append(m.cno) print("Sats: %d Accuracy: %.2f m cnos" % (ug.measurementReport.numMeas, gle.accuracy), sorted(cnos)) - except: + except Exception: pass sm.update() time.sleep(0.1)