From ecfc66b1070c4cfd84ab488e630f8808b53fb32b Mon Sep 17 00:00:00 2001 From: Peter Stangl Date: Thu, 30 Jul 2020 22:37:20 +0200 Subject: [PATCH] enforce use of keyword arguments in `contour` --- flavio/plots/plotfunctions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flavio/plots/plotfunctions.py b/flavio/plots/plotfunctions.py index a8d8cab7..5309489a 100644 --- a/flavio/plots/plotfunctions.py +++ b/flavio/plots/plotfunctions.py @@ -621,7 +621,7 @@ def band_plot(log_likelihood, x_min, x_max, y_min, y_max, return contour_kwargs['x'], contour_kwargs['y'], contour_kwargs['z'] -def contour(x, y, z, levels, z_min=None, +def contour(x, y, z, levels, *, z_min=None, interpolation_factor=1, interpolation_order=2, col=None, color=None, label=None,