summaryrefslogtreecommitdiff
path: root/wrappers/python/src
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2022-09-06 13:05:31 +0200
committerjwijenbergh <jeroenwijenbergh@protonmail.com>2022-09-06 13:05:31 +0200
commit55606240f6296ff8238164a6e510ee79722bf5c3 (patch)
tree1bfb729985093d975c94302a9be43552e2078bfb /wrappers/python/src
parentefe37d710cbc8097b02f06e3350f0e8467a23058 (diff)
State + FSM + Python: Rename the HAS_CONFIG state to DISCONNECTED
Diffstat (limited to 'wrappers/python/src')
-rw-r--r--wrappers/python/src/state.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wrappers/python/src/state.py b/wrappers/python/src/state.py
index a4b11a8..5af004f 100644
--- a/wrappers/python/src/state.py
+++ b/wrappers/python/src/state.py
@@ -18,7 +18,7 @@ class State(IntEnum):
AUTHORIZED = 7
REQUEST_CONFIG = 8
ASK_PROFILE = 9
- HAS_CONFIG = 10
+ DISCONNECTED = 10
DISCONNECTING = 11
CONNECTING = 12
CONNECTED = 13