[bugfix] accidentally removed return value
This commit is contained in:
parent
b12e7937ac
commit
5eab686445
@ -191,11 +191,10 @@ class Metadata(object):
|
|||||||
if not metadata:
|
if not metadata:
|
||||||
return
|
return
|
||||||
try:
|
try:
|
||||||
metadata['data'].get_coordinates(seed_id, time)
|
return metadata['data'].get_coordinates(seed_id, time)
|
||||||
# no specific exception defined in obspy inventory
|
# no specific exception defined in obspy inventory
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logging.warning(f'Could not get metadata for {seed_id}')
|
logging.warning(f'Could not get metadata for {seed_id}')
|
||||||
return
|
|
||||||
|
|
||||||
def get_all_coordinates(self):
|
def get_all_coordinates(self):
|
||||||
def stat_info_from_parser(parser):
|
def stat_info_from_parser(parser):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user