!== nothing

This commit is contained in:
Daniel Schwabeneder 2020-09-27 21:59:10 +02:00
parent 23b852da8f
commit a13e137770

View File

@ -596,7 +596,7 @@ function plotly_series(plt::Plot, series::Series)
plotattributes_out[:type] = "mesh3d"
plotattributes_out[:x], plotattributes_out[:y], plotattributes_out[:z] = x, y, z
if series[:connections] != nothing
if series[:connections] !== nothing
if typeof(series[:connections]) <: Tuple{Array,Array,Array}
i,j,k = series[:connections]
if !(length(i) == length(j) == length(k))