Skip to content

Commit 9838aaa

Browse files
committed
Fix bug from missing prop_keys attribute
1 parent 4b2c2e9 commit 9838aaa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

proplot/axes/plot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2529,7 +2529,7 @@ def _update_cycle(self, cycle, scatter=False, **kwargs):
25292529
apply_manually = {} # which keys to apply from property cycler
25302530
if scatter:
25312531
parser = self._get_lines # the _process_plot_var_args instance
2532-
prop_keys = set(parser.prop_cycler.keys) - {'color', 'linestyle', 'dashes'}
2532+
prop_keys = set(parser._prop_keys) - {'color', 'linestyle', 'dashes'}
25332533
for prop, key in (
25342534
('markersize', 's'),
25352535
('linewidth', 'linewidths'),

0 commit comments

Comments
 (0)