From f2afac6cab82c89f62286d07bebd836716f769a8 Mon Sep 17 00:00:00 2001 From: NicolaCourtier <45851982+NicolaCourtier@users.noreply.github.com> Date: Tue, 27 Aug 2024 10:21:23 +0100 Subject: [PATCH] Rename quick_plot.py to standard_plots.py (#469) * Rename quick_plot.py to standard_plots.py * Update CHANGELOG.md --- CHANGELOG.md | 1 + pybop/__init__.py | 2 +- pybop/plotting/{quick_plot.py => standard_plots.py} | 0 3 files changed, 2 insertions(+), 1 deletion(-) rename pybop/plotting/{quick_plot.py => standard_plots.py} (100%) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a7b61305..d4b49baa0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ ## Bug Fixes +- [#468](https://github.com/pybop-team/PyBOP/issue/468) - Renames `quick_plot.py` to `standard_plots.py`. - [#454](https://github.com/pybop-team/PyBOP/issue/454) - Fixes benchmarking suite. - [#421](https://github.com/pybop-team/PyBOP/issues/421) - Adds a default value for the initial SOC for design problems. diff --git a/pybop/__init__.py b/pybop/__init__.py index 6f8b1b828..3969f1f59 100644 --- a/pybop/__init__.py +++ b/pybop/__init__.py @@ -151,7 +151,7 @@ # Plotting class # from .plotting.plotly_manager import PlotlyManager -from .plotting.quick_plot import StandardPlot, StandardSubplot, plot_trajectories +from .plotting.standard_plots import StandardPlot, StandardSubplot, plot_trajectories from .plotting.plot2d import plot2d from .plotting.plot_dataset import plot_dataset from .plotting.plot_convergence import plot_convergence diff --git a/pybop/plotting/quick_plot.py b/pybop/plotting/standard_plots.py similarity index 100% rename from pybop/plotting/quick_plot.py rename to pybop/plotting/standard_plots.py