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