[bugfix] accidentally removed return value

This commit is contained in:
Marcel Paffrath 2024-05-24 16:10:32 +02:00
parent b12e7937ac
commit 5eab686445

View File

@ -191,11 +191,10 @@ class Metadata(object):
if not metadata:
return
try:
metadata['data'].get_coordinates(seed_id, time)
return metadata['data'].get_coordinates(seed_id, time)
# no specific exception defined in obspy inventory
except Exception as e:
logging.warning(f'Could not get metadata for {seed_id}')
return
def get_all_coordinates(self):
def stat_info_from_parser(parser):