summaryrefslogtreecommitdiff
path: root/wrappers/python/eduvpn_common/state.py
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2023-03-01 00:35:39 +0100
committerjwijenbergh <jeroenwijenbergh@protonmail.com>2023-03-01 00:35:39 +0100
commitb0236124fb328f5d1e863f3c76e6d57273519a15 (patch)
tree9b28b3637061f8ff1637e88adf8914a069baf5b1 /wrappers/python/eduvpn_common/state.py
parenta1519ff7685ac987f9d70b1fb49bf777028d49b0 (diff)
Format: Run black and gofumpt
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