delete left-over text

This commit is contained in:
Daniel Schwabeneder 2019-08-27 16:43:41 +02:00
parent 844c3f7002
commit 4247584df2

View File

@ -34,7 +34,7 @@ function convertToAnyVector(v::AVec)
if all(x -> isa(x, Number) || ismissing(x), v) || all(x -> isa(x, AbstractString) || ismissing(x), v)
convertToAnyVector(convert.(DataPoint, v))
else
Any[prepareSeriesData(v)] : vcat((convertToAnyVector(vi) for vi in v)...)
vcat((convertToAnyVector(vi) for vi in v)...)
end
end