testbottt / UserStatus.py
Sabareeshr's picture
Upload 6 files
adc818e verified
raw
history blame contribute delete
186 Bytes
class UserStatus:
COUPLED = "coupled"
IDLE = "idle"
IN_SEARCH = "in_search"
PARTNER_LEFT = "partner_left"
possible_states = [COUPLED, IDLE, IN_SEARCH, PARTNER_LEFT]