[Bugfix] fixxed wrong check for taupymodel

This commit is contained in:
Jeldrik Gaal 2023-06-27 08:04:00 +02:00
parent a1f6c5ffca
commit 43cab3767f

View File

@ -1786,7 +1786,7 @@ class PickDlg(QDialog):
# init expected picks using obspy Taup
try:
if self.metadata and model is not None:
if self.metadata and model != "None":
self.model = TauPyModel(model)
self.get_arrivals()
self.drawArrivals()