From 485f65dd2631339904e9d9a5e2ac94e132518984 Mon Sep 17 00:00:00 2001 From: Thorsten Hater <24411438+thorstenhater@users.noreply.github.com> Date: Fri, 6 Oct 2023 15:48:43 +0200 Subject: [PATCH] Matplotlib deprecation. (#2223) Remove deprecated styling form LFP example. --- python/example/probe_lfpykit.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/python/example/probe_lfpykit.py b/python/example/probe_lfpykit.py index d7870f6adf..c3cafc11b8 100644 --- a/python/example/probe_lfpykit.py +++ b/python/example/probe_lfpykit.py @@ -392,10 +392,6 @@ def colorbar( # show predictions at the last time point of simulation time_index = -1 -# use seaborn style -plt.style.use("seaborn") -plt.rcParams["image.cmap"] = "viridis" - # create figure and axis fig, ax = plt.subplots(1, 1, figsize=(16, 6), dpi=100)