From 917db93f58bceaf7d164dd5ca9cc3cb46dcc2133 Mon Sep 17 00:00:00 2001 From: Ray DeMay Date: Mon, 9 Jan 2023 22:28:16 -0500 Subject: [PATCH] Fixed args passed to scatter mpl_plotter scatter class has args for label_x and label_y rather than x_label and y_label --- huracan/engine.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/huracan/engine.py b/huracan/engine.py index 0da0738..aa54563 100644 --- a/huracan/engine.py +++ b/huracan/engine.py @@ -866,8 +866,8 @@ class arguments can be passed to this function. fig=fig, # Further customization plot_label=plot_label, - x_label=x_label, - y_label=y_label, + label_x=x_label, + label_y=y_label, show=show, **further_custom)