summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2022-04-21 14:47:42 +0200
committerjwijenbergh <jeroenwijenbergh@protonmail.com>2022-04-21 14:47:42 +0200
commitc7efec780a9e11e97690a19cf751533279788e79 (patch)
tree3628603dbdfe0b522f0334d8d949088f35f7102c
parentf794ea95eb49a4f92ddd16307d70f6cad0f6a768 (diff)
Python: Remove obsolete FIXMEs
-rw-r--r--wrappers/python/eduvpncommon/main.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/wrappers/python/eduvpncommon/main.py b/wrappers/python/eduvpncommon/main.py
index fc1035a..da8b186 100644
--- a/wrappers/python/eduvpncommon/main.py
+++ b/wrappers/python/eduvpncommon/main.py
@@ -10,8 +10,7 @@ class StateType(Enum):
# Registers the python app with the Go code
# name: The name of the app to be registered
-# url: The url of the server to connect to, FIXME: To be removed
-# state_callback: The callback to trigger whenever a state is changed, FIXME: Remove whenever this wrapper has implemented callbacks using function decorations
+# state_callback: The callback to trigger whenever a state is changed
def Register(name, config_directory, state_callback, debug):
name_bytes = name.encode("utf-8")
dir_bytes = config_directory.encode("utf-8")