From 9a4a01642a17b0b3fe0d687019b0f13d7da050a9 Mon Sep 17 00:00:00 2001 From: Google Colaboratory Team Date: Wed, 13 Mar 2024 11:19:45 -0700 Subject: [PATCH] No public description PiperOrigin-RevId: 615484209 --- google/colab/_quickchart_lib.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/google/colab/_quickchart_lib.py b/google/colab/_quickchart_lib.py index 90b781da..4e76bf34 100644 --- a/google/colab/_quickchart_lib.py +++ b/google/colab/_quickchart_lib.py @@ -260,8 +260,6 @@ def time_series_multiline( code = f"""from matplotlib import pyplot as plt import seaborn as sns def _plot_series(series, series_name, series_index=0): - from matplotlib import pyplot as plt - import seaborn as sns palette = list(sns.palettes.mpl_palette('Dark2')) {plot_series_impl} plt.plot(xs, ys, label=series_name, color=palette[series_index % len(palette)])