From 60e80e93cf51fc98aa060487ac3e6598c7c0634f Mon Sep 17 00:00:00 2001 From: Adrian Dawid Date: Tue, 11 Aug 2020 01:15:43 +0200 Subject: [PATCH] Clean up code --- src/backends/plotly.jl | 1 - src/pipeline.jl | 3 --- 2 files changed, 4 deletions(-) diff --git a/src/backends/plotly.jl b/src/backends/plotly.jl index 94da1727..cef4a14f 100644 --- a/src/backends/plotly.jl +++ b/src/backends/plotly.jl @@ -489,7 +489,6 @@ as_gradient(grad, α) = cgrad(alpha = α) # get a dictionary representing the series params (plotattributes is the Plots-dict, plotattributes_out is the Plotly-dict) function plotly_series(plt::Plot, series::Series) st = series[:seriestype] - println(st) sp = series[:subplot] clims = get_clims(sp, series) diff --git a/src/pipeline.jl b/src/pipeline.jl index d2830ba9..88dcf9a8 100644 --- a/src/pipeline.jl +++ b/src/pipeline.jl @@ -328,15 +328,12 @@ end function _override_seriestype_check(plotattributes::AKW, st::Symbol) # do we want to override the series type? - println(RecipesPipeline.is3d(st)) - println(st) if !RecipesPipeline.is3d(st) && !(st in (:contour, :contour3d)) z = plotattributes[:z] if !isa(z, Nothing) && (size(plotattributes[:x]) == size(plotattributes[:y]) == size(z)) && st !== :mesh3d st = (st == :scatter ? :scatter3d : :path3d) - println("hello hello hello") plotattributes[:seriestype] = st end end