From e8b7529b203af95d22a3f705a738a810b8e124a7 Mon Sep 17 00:00:00 2001 From: Cole Kendrick <kendrickcj@ornl.gov> Date: Fri, 19 Mar 2021 15:14:34 -0400 Subject: [PATCH] Fix matplotlib import error --- Framework/PythonInterface/mantid/plots/utility.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Framework/PythonInterface/mantid/plots/utility.py b/Framework/PythonInterface/mantid/plots/utility.py index 27e6feddcb4..c8189559795 100644 --- a/Framework/PythonInterface/mantid/plots/utility.py +++ b/Framework/PythonInterface/mantid/plots/utility.py @@ -14,7 +14,7 @@ from enum import Enum # 3rd party imports from matplotlib.legend import Legend -from matplotlib import cm, pyplot as plt, __version__ as mpl_version_str +from matplotlib import cm, __version__ as mpl_version_str from matplotlib.container import ErrorbarContainer # ----------------------------------------------------------------------------- @@ -215,7 +215,7 @@ def get_single_workspace_log_value(ws_index, *, log_values=None, matrix_ws=None, def colormap_as_plot_color(number_colors: int, colormap_name: str = 'viridis', cmap=None): if not cmap: - cmap = plt.get_cmap(name=colormap_name) + cmap = cm.get_cmap(name=colormap_name) for i in range(number_colors): yield cmap(float(i) / number_colors) -- GitLab