Skip to content

Commit 8f1698f

Browse files
authored
Merge pull request matplotlib#28001 from meeseeksmachine/auto-backport-of-pr-28000-on-v3.8.x
Backport PR matplotlib#28000 on branch v3.8.x (Fix color sequence data for Set2 and Set3)
2 parents 06269cd + 79ee5af commit 8f1698f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matplotlib/colors.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,8 @@ class ColorSequenceRegistry(Mapping):
127127
'Accent': _cm._Accent_data,
128128
'Dark2': _cm._Dark2_data,
129129
'Set1': _cm._Set1_data,
130-
'Set2': _cm._Set1_data,
131-
'Set3': _cm._Set1_data,
130+
'Set2': _cm._Set2_data,
131+
'Set3': _cm._Set3_data,
132132
}
133133

134134
def __init__(self):

0 commit comments

Comments
 (0)