Skip to content

Commit 7f8ad73

Browse files
committed
fix missing test_size argument
1 parent a502e2f commit 7f8ad73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc3/plots/posteriorplot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def create_axes_grid(figsize, traces):
8686

8787
plot_posterior_op(transform(trace), ax=ax, bw=bw, kde_plot=kde_plot,
8888
point_estimate=point_estimate, round_to=round_to, alpha_level=alpha_level,
89-
ref_val=ref_val, rope=rope, text_size=scale_text(figsize), **kwargs)
89+
ref_val=ref_val, rope=rope, text_size=scale_text(figsize, text_size), **kwargs)
9090

9191
else:
9292
if varnames is None:

0 commit comments

Comments
 (0)