From 586991e77d29803639355946b19db91746bb5cae Mon Sep 17 00:00:00 2001 From: Tim Hoffmann <2836374+timhoffm@users.noreply.github.com> Date: Mon, 28 Oct 2024 22:29:36 +0100 Subject: [PATCH] DOC: Fix copy-paste typo in ColorSequenceRegistry The docstring was copied from ColormapRegistry, but using `cmap` in the example is misleading. --- lib/matplotlib/colors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/matplotlib/colors.py b/lib/matplotlib/colors.py index 55090252d24e..5f909d07c190 100644 --- a/lib/matplotlib/colors.py +++ b/lib/matplotlib/colors.py @@ -106,7 +106,7 @@ class ColorSequenceRegistry(Mapping): Read access uses a dict-like interface mapping names to lists of colors:: import matplotlib as mpl - cmap = mpl.color_sequences['tab10'] + colors = mpl.color_sequences['tab10'] The returned lists are copies, so that their modification does not change the global definition of the color sequence.