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.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/wrappers/python/eduvpn_common/state.py b/wrappers/python/eduvpn_common/state.py
index dfa04c9..227d3c2 100644
--- a/wrappers/python/eduvpn_common/state.py
+++ b/wrappers/python/eduvpn_common/state.py
@@ -2,12 +2,18 @@ from enum import IntEnum
class StateType(IntEnum):
+ """
+ The State Type enum. Wait types are mostly used for internal code
+ """
ENTER = 1
LEAVE = 2
WAIT = 3
class State(IntEnum):
+ """
+ The State enum. Each state here also exists in the Go library
+ """
DEREGISTERED = 0
NO_SERVER = 1
ASK_LOCATION = 2