mirror of
https://github.com/RYGhub/royalnet.git
synced 2025-02-25 06:05:03 +00:00
7 lines
92 B
Python
7 lines
92 B
Python
import enum
|
|
|
|
|
|
class PollMood(enum.Enum):
|
|
POSITIVE = 1
|
|
NEUTRAL = 0
|
|
NEGATIVE = -1
|