mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
7 lines
92 B
Python
7 lines
92 B
Python
import enum
|
|
|
|
|
|
class PollMood(enum.Enum):
|
|
POSITIVE = 1
|
|
NEUTRAL = 0
|
|
NEGATIVE = -1
|