Skip to content
Snippets Groups Projects
Commit 5a5b63fa authored by David Trattnig's avatar David Trattnig
Browse files

refact: for compare inherit enum types from str

parent 0fe56caa
No related branches found
No related tags found
No related merge requests found
...@@ -29,7 +29,7 @@ from aura_engine.base.utils import SimpleUtil as SU ...@@ -29,7 +29,7 @@ from aura_engine.base.utils import SimpleUtil as SU
from aura_engine.resources import ResourceType from aura_engine.resources import ResourceType
class TransitionType(Enum): class TransitionType(str, Enum):
""" """
Types of fade-in and fade-out transition. Types of fade-in and fade-out transition.
""" """
...@@ -38,7 +38,7 @@ class TransitionType(Enum): ...@@ -38,7 +38,7 @@ class TransitionType(Enum):
FADE = "fade" FADE = "fade"
class Channel(Enum): class Channel(str, Enum):
""" """
Channel name mappings to the Liqidsoap channel/source IDs. Channel name mappings to the Liqidsoap channel/source IDs.
""" """
...@@ -169,7 +169,7 @@ class ChannelType(Enum): ...@@ -169,7 +169,7 @@ class ChannelType(Enum):
return str(self.value["id"]) return str(self.value["id"])
class EntryPlayState(Enum): class EntryPlayState(str, Enum):
"""Play-state of a playlist entry.""" """Play-state of a playlist entry."""
UNKNOWN = "unknown" UNKNOWN = "unknown"
...@@ -179,7 +179,7 @@ class EntryPlayState(Enum): ...@@ -179,7 +179,7 @@ class EntryPlayState(Enum):
FINISHED = "finished" FINISHED = "finished"
class LiquidsoapResponse(Enum): class LiquidsoapResponse(str, Enum):
"""Response values from Liquidsoap.""" """Response values from Liquidsoap."""
# There are some weird variations of responses coming # There are some weird variations of responses coming
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment