summaryrefslogtreecommitdiff
path: root/wrappers/python/eduvpn_common/state.py
diff options
context:
space:
mode:
Diffstat (limited to 'wrappers/python/eduvpn_common/state.py')
-rw-r--r--wrappers/python/eduvpn_common/state.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/wrappers/python/eduvpn_common/state.py b/wrappers/python/eduvpn_common/state.py
index 227d3c2..21573f7 100644
--- a/wrappers/python/eduvpn_common/state.py
+++ b/wrappers/python/eduvpn_common/state.py
@@ -5,6 +5,7 @@ class StateType(IntEnum):
"""
The State Type enum. Wait types are mostly used for internal code
"""
+
ENTER = 1
LEAVE = 2
WAIT = 3
@@ -14,6 +15,7 @@ class State(IntEnum):
"""
The State enum. Each state here also exists in the Go library
"""
+
DEREGISTERED = 0
NO_SERVER = 1
ASK_LOCATION = 2