From 4cfdbb63e5d95d141fd11fb2b79f812166236396 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Titas=20Bu=C4=8Delis?= <66130422+Titas22@users.noreply.github.com> Date: Fri, 24 Nov 2023 11:47:36 +0000 Subject: [PATCH] remove unnecessary semicolon Co-authored-by: Josh Day --- src/PlotlyLight.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PlotlyLight.jl b/src/PlotlyLight.jl index f5322c8..5b76975 100644 --- a/src/PlotlyLight.jl +++ b/src/PlotlyLight.jl @@ -76,7 +76,7 @@ function download_schema!() end function load_schema(force=false) if force || !isassigned(schema) - schema[] = JSON3.read(open(joinpath(scratch_dir[], "plotly-schema.json"), "r"), Config;) + schema[] = JSON3.read(open(joinpath(scratch_dir[], "plotly-schema.json"), "r"), Config) end return schema[] end