[hotfix] something went wrong trying to merge/rebase develop

This commit is contained in:
Marcel Paffrath 2018-07-12 14:17:06 +02:00
parent 27ea20fa47
commit 9f1672d793

View File

@ -89,15 +89,9 @@ def autopickevent(data, param, iplot=0, fig_dict=None, fig_dict_wadatijack=None,
'stations on {} cores.'.format(len(input_tuples), ncores_str))
pool = gen_Pool(ncores)
result = pool.map(call_autopickstation, input_tuples)
results = pool.map(call_autopickstation, input_tuples)
pool.close()
if ncores == 1:
results = serial_picking(input_tuples)
else:
results = parallel_picking(input_tuples, ncores)
for result, wfstream in results:
if type(result) == dict:
station = result['station']