Skip to content

Commit

Permalink
Backport PR #28000: Fix color sequence data for Set2 and Set3
Browse files Browse the repository at this point in the history
  • Loading branch information
rcomer authored and meeseeksmachine committed Apr 1, 2024
1 parent 06269cd commit 79ee5af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/matplotlib/colors.py
Expand Up @@ -127,8 +127,8 @@ class ColorSequenceRegistry(Mapping):
'Accent': _cm._Accent_data,
'Dark2': _cm._Dark2_data,
'Set1': _cm._Set1_data,
'Set2': _cm._Set1_data,
'Set3': _cm._Set1_data,
'Set2': _cm._Set2_data,
'Set3': _cm._Set3_data,
}

def __init__(self):
Expand Down

0 comments on commit 79ee5af

Please sign in to comment.