Skip to content

Commit 47dc2c6

Browse files
authored
Merge pull request #28000 from lkkmpn/fix-set-color-sequences
Fix color sequence data for Set2 and Set3
2 parents 3594e41 + e91241e commit 47dc2c6

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)