Skip to content

1.0.0rc15

Choose a tag to compare

@tadashi-aikawa tadashi-aikawa released this 24 Feb 12:38
· 390 commits to master since this release

New features

  • 🆕 Add support for Enum (please use OwlEnum)

ex.

from owlmixin.owlenum import OwlEnum

class Color(OwlEnum):
    RED = "red"
    GREEN = "green"
    BLUE = "blue"