Skip to content

Commit

Permalink
2024-09-01 update : fixing save plots func. error.
Browse files Browse the repository at this point in the history
  • Loading branch information
cbernalz committed Sep 2, 2024
1 parent abfd63f commit 806a52c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/non_time_varying_param_vis.jl
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ function non_time_varying_param_vis(
size = (1500, 1500))
display(final_plot)
if save_plots
savefig(final_plot, plot_name_to_save)
save_plots_to_docs(final_plot, plot_name_to_save)
end
else
println("NO NON-TIME VARYING PARAMETER PLOTS TO DISPLAY!!!")
Expand Down Expand Up @@ -207,7 +207,7 @@ function non_time_varying_param_vis(
size = (1500, 1500))
display(final_plot)
if save_plots
savefig(final_plot, plot_name_to_save)
save_plots_to_docs(final_plot, plot_name_to_save)
end
else
println("NO NON-TIME VARYING PARAMETER PLOTS TO DISPLAY!!!")
Expand Down

0 comments on commit 806a52c

Please sign in to comment.