We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 034ed7e commit f620d61Copy full SHA for f620d61
proplot/axes/plot.py
@@ -2498,8 +2498,9 @@ def _parse_cycle(
2498
cycle_manually = cycle_manually or {}
2499
parser = self._get_lines # the _process_plot_var_args instance
2500
props = {} # which keys to apply from property cycler
2501
+ # BREAKING in mpl3.9.1 parse has cycle items and no longer posseses _prop_keys
2502
for prop, key in cycle_manually.items():
- if kwargs.get(key, None) is None and prop in parser._prop_keys:
2503
+ if kwargs.get(key, None) is None and any(prop in item for item in parser._cycler_items):
2504
props[prop] = key
2505
if props:
2506
for dict_ in parser._cycler_items:
0 commit comments