Skip to content
Snippets Groups Projects
Commit 222ab925 authored by Lan Dam's avatar Lan Dam
Browse files

flake8

parent 4067cacd
No related branches found
No related tags found
1 merge request!137handle no known data detected
Pipeline #2655 passed with stage
in 3 minutes and 30 seconds
......@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment