From 222ab925148ba84c2055bb27e32af8afb448e60e Mon Sep 17 00:00:00 2001 From: ldam <ldam@passcal.nmt.edu> Date: Thu, 20 Jul 2023 11:56:10 -0600 Subject: [PATCH] flake8 --- sohstationviewer/view/plotting/gps_plot/extract_gps_data.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sohstationviewer/view/plotting/gps_plot/extract_gps_data.py b/sohstationviewer/view/plotting/gps_plot/extract_gps_data.py index daf859445..8950c1c39 100644 --- a/sohstationviewer/view/plotting/gps_plot/extract_gps_data.py +++ b/sohstationviewer/view/plotting/gps_plot/extract_gps_data.py @@ -449,7 +449,8 @@ def gps_data_mseed(data_obj: MSeed) -> List[GPSPoint]: gps_data = extract_gps_data_q330(data_obj) except KeyError: try: - gps_data = extract_gps_data_pegasus_centaur(data_obj, data_type) + gps_data = extract_gps_data_pegasus_centaur( + data_obj, data_type) except AttributeError: return [] return gps_data -- GitLab