File size: 186 Bytes
adc818e
 
 
 
 
 
 
1
2
3
4
5
6
7
8
class UserStatus:
    COUPLED = "coupled"
    IDLE = "idle"
    IN_SEARCH = "in_search"
    PARTNER_LEFT = "partner_left"

    possible_states = [COUPLED, IDLE, IN_SEARCH, PARTNER_LEFT]