From a8373592ea7b4428638ab28d341238f43b951df2 Mon Sep 17 00:00:00 2001 From: Marvin Kastner Date: Tue, 19 Sep 2023 22:14:36 +0200 Subject: [PATCH] Use new name for matplotlib style --- conflowgen/reporting/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conflowgen/reporting/__init__.py b/conflowgen/reporting/__init__.py index 4e31df91..3d2f71b4 100644 --- a/conflowgen/reporting/__init__.py +++ b/conflowgen/reporting/__init__.py @@ -144,7 +144,7 @@ def show_report_as_graph(self, **kwargs) -> None: kwargs.pop("static", None) kwargs.pop("display_as_ipython_svg", None) - with plt.style.context('seaborn-colorblind'): + with plt.style.context('seaborn-v0_8-colorblind'): self.get_report_as_graph(**kwargs) plt.show(block=True)