From ba2de200c3790115c8012198463bf158eb2eedee Mon Sep 17 00:00:00 2001 From: Daniel Weschke Date: Sat, 8 Aug 2026 13:07:45 +0200 Subject: [PATCH] fix matplotlib changes --- settings/org-settings.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/settings/org-settings.el b/settings/org-settings.el index d8b72b57..3cff0164 100644 --- a/settings/org-settings.el +++ b/settings/org-settings.el @@ -1145,8 +1145,8 @@ import matplotlib.style matplotlib.style.reload_library() import matplotlib.pyplot as plt -styles = plt.style.core.read_style_directory('%s') -plt.style.core.update_nested_dict(plt.style.library, styles) +styles = plt.style.read_style_directory('%s') +plt.style.update_nested_dict(plt.style.library, styles) try: plt.style.use('%s') except: