Skip to content

color cycler #98

@Jhsmit

Description

@Jhsmit

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions