From 0665ff907c214b40b9191ecfc5b3faeaee27dd6e Mon Sep 17 00:00:00 2001 From: Seth Axen Date: Mon, 15 Feb 2021 14:53:22 -0800 Subject: [PATCH] Use semicolon --- src/backends/pyplot.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backends/pyplot.jl b/src/backends/pyplot.jl index eadaba88..cb4261ea 100644 --- a/src/backends/pyplot.jl +++ b/src/backends/pyplot.jl @@ -510,7 +510,7 @@ function py_add_series(plt::Plot{PyPlotBackend}, series::Series) end if st == :hexbin - handle = ax."hexbin"(x, y, + handle = ax."hexbin"(x, y; label = series[:label], C = series[:weights], gridsize = series[:bins]==:auto ? 100 : series[:bins], # 100 is the default value