diff options
| author | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2022-03-22 10:50:52 +0100 |
|---|---|---|
| committer | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2022-03-22 10:50:52 +0100 |
| commit | eb5a1f2e9d47530c1896f49a2c4e7ffc82bcce4f (patch) | |
| tree | 60487ffce8ab9ee15e7ca10ef25b5d51288a24e6 /wrappers/python/eduvpncommon/main.py | |
| parent | 324202a50e440cac36a756d6a2628ebadd2f8d70 (diff) | |
Python: Fix wrapping type errors
Diffstat (limited to 'wrappers/python/eduvpncommon/main.py')
| -rw-r--r-- | wrappers/python/eduvpncommon/main.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wrappers/python/eduvpncommon/main.py b/wrappers/python/eduvpncommon/main.py index f7afa17..3bb0c48 100644 --- a/wrappers/python/eduvpncommon/main.py +++ b/wrappers/python/eduvpncommon/main.py @@ -5,12 +5,12 @@ from ctypes import * def state_change(old, new, data): print(f"Python: State change {old.decode()} {new.decode()} DATA {data.decode()}") -# Registers the python app with the GO code +# 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 def Register(name, config_directory, state_callback): name_bytes = name.encode('utf-8') dir_bytes = config_directory.encode('utf-8') - lib.Register(name_bytes, config_directory, state_callback) + lib.Register(name_bytes, dir_bytes, state_callback) |
