xstate-python icon indicating copy to clipboard operation
xstate-python copied to clipboard

Consider using enums

Open davidkpiano opened this issue 5 years ago • 2 comments

https://docs.python.org/3/library/enum.html

davidkpiano avatar Jul 24 '20 16:07 davidkpiano

For the state and transition types?

import enum


class StateType(enum.Enum):
    compound = "compound"
    history = "history"
    atomic = "atomic"
    final = "final"


class TransitionType(enum.Enum):
    internal = 0
    external = 1

NixBiks avatar May 31 '21 18:05 NixBiks

For the state and transition types?

Yes (sorry, should have been more clear!)

davidkpiano avatar May 31 '21 18:05 davidkpiano