Skip to content

Commit 1c8ea5b

Browse files
committed
Don not print OK
1 parent 621c16e commit 1c8ea5b

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/plot.jl

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,6 @@ function plot(X, Ys::AbstractVector{<:Union{AbstractVector, Tuple}}; xlabel="",
8383
plt.grid(which="major", color="#DDDDDD")
8484
plt.legend()
8585
plt.tight_layout()
86-
else
87-
println("OK")
8886
end
8987
PlotX(X, Ys, labels, xlabel, ylabel, ysize, nothing, nothing, nothing, xlims, ylims, ann, scatter, title, fig, nothing, 4)
9088
end
@@ -123,8 +121,6 @@ function plot(X, Y1::AbstractVector{<:AbstractVector}, Y2::AbstractVector{<:Numb
123121
plt.grid(which="major", color="#DDDDDD")
124122
plt.legend(lns, labels, loc="best")
125123
plt.tight_layout()
126-
else
127-
println("OK")
128124
end
129125
PlotX(X, [Y1, Y2], labels, xlabel, ylabels, ysize, nothing, nothing, nothing, xlims, ylims, ann, scatter, title, fig, nothing, 5)
130126
end
@@ -183,8 +179,6 @@ function plot(X, Y1::AbstractVector{<:Number}, Y2::AbstractVector{<:Number};
183179
lns = [l1, l2]
184180
plt.legend(lns, labels, loc="best")
185181
plt.tight_layout()
186-
else
187-
println("OK")
188182
end
189183
PlotX(X, [Y1, Y2], labels, xlabel, ylabels, ysize, nothing, nothing, nothing, xlims, ylims, ann, scatter, title, fig, nothing, 5)
190184
end

0 commit comments

Comments
 (0)