From 4b94a8c2f679400e683caa96f9eb75d058899a35 Mon Sep 17 00:00:00 2001 From: Anshul Singhvi Date: Sun, 15 Mar 2020 17:57:28 +0530 Subject: [PATCH] Fix un-imported symbol (#2468) ensure that the pipeline works --- src/Plots.jl | 2 +- src/pipeline.jl | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Plots.jl b/src/Plots.jl index 08fa45dd..92546af7 100644 --- a/src/Plots.jl +++ b/src/Plots.jl @@ -24,7 +24,7 @@ import RecipePipeline: _process_userrecipe, _process_plotrecipe, finalize_subplot!, recipe_pipeline!, _recipe_init!, _recipe_after_user!, _recipe_after_plot!, _recipe_before_series!, - _recipe_finish! + _recipe_finish!, is_st_supported using Requires diff --git a/src/pipeline.jl b/src/pipeline.jl index 03f6935d..05198ae0 100644 --- a/src/pipeline.jl +++ b/src/pipeline.jl @@ -1,4 +1,3 @@ - function finalize_subplot!(plt::Plot, st, plotattributes::AKW) sp = _prepare_subplot(plt, plotattributes) _prepare_annotations(sp, plotattributes) @@ -8,7 +7,7 @@ function finalize_subplot!(plt::Plot, st, plotattributes::AKW) end # Override the RecipesPipeline `is_st_supported` for Plots. -RecipePipeline.is_st_supported(::Plot, st::Symbol) = is_seriestype_supported(st) +is_st_supported(::Plot, st::Symbol) = is_seriestype_supported(st) # ------------------------------------------------------------------ # preprocessing