mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
27 lines
576 B
Python
27 lines
576 B
Python
from enum import Enum
|
|
|
|
|
|
class Emotion(Enum):
|
|
CAT = "cat"
|
|
CRY = "cry"
|
|
DISAPPOINTED = "disappointed"
|
|
DOOTFLUTE = "dootflute"
|
|
DOOTTRUMPET = "doottrumpet"
|
|
GRIN = "grin"
|
|
HALFLIFE = "halflife"
|
|
HAPPY = "happy"
|
|
KEY = "key"
|
|
KEYFACE = "keyface"
|
|
NEUTRAL = "neutral"
|
|
QUESTION = "question"
|
|
SMUG = "smug"
|
|
SURPRISED = "surprised"
|
|
WINK = "wink"
|
|
WORRIED = "worried"
|
|
X = "x"
|
|
|
|
def __str__(self):
|
|
return self.value
|
|
|
|
def __repr__(self):
|
|
return f"<{self.__class__.__qualname__} {self.name}: {self.value}>"
|