-
Notifications
You must be signed in to change notification settings - Fork 19
Closed
Description
I just updated to v1.08, I think it should have a fix for uplt.Cycle if I'm not mistaking but I get the following behaviour on python 3.10 and 3.13 (didnt test in between):
color = ["#7FACFA", "#FA654D", "#8CAD36"]
cycle = uplt.Cycle(color=color)
list(cycle)
>>> [{'color': 'black'}]expected:
from cycler import cycler
cycle =cycler(color=["#7FACFA", "#FA654D", "#8CAD36"])
list(cycle)
>>> [{'color': '#7FACFA'}, {'color': '#FA654D'}, {'color': '#8CAD36'}]Metadata
Metadata
Assignees
Labels
No labels