Source code for Structures.Emotion

from enum import Enum, unique


[docs]@unique class Emotion(Enum): ANGER = "ANGER" DISGUST = "DISGUST" FEAR = "FEAR" HAPPINESS = "HAPPINESS" NEUTRAL = "NEUTRAL" SADNESS = "SADNESS" SURPRISE = "SURPRISE" def __str__(self): return self.name