Skip to content
Snippets Groups Projects
Commit e494b5d4 authored by Matthew David Pitkin's avatar Matthew David Pitkin
Browse files

result.py: add another exception to catch in plot_with_data

parent 9fba8be8
No related branches found
No related tags found
No related merge requests found
......@@ -804,7 +804,7 @@ class Result(object):
s = model_posterior.iloc[self.posterior.log_likelihood.idxmax()]
ax.plot(xsmooth, model(xsmooth, **s), lw=1, color='k',
label=maxl_label)
except AttributeError:
except (AttributeError, TypeError):
logger.debug(
"No log likelihood values stored, unable to plot max")
......
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