diff options
| author | Jeroen Wijenbergh <jeroen.wijenbergh@geant.org> | 2025-09-02 14:48:49 +0200 |
|---|---|---|
| committer | Jeroen Wijenbergh <jeroen.wijenbergh@geant.org> | 2025-09-02 14:48:49 +0200 |
| commit | 308c656f05d0609eeb02891dbe3c30f8b0438765 (patch) | |
| tree | 11d5257cdad84b81aefaafbf2b91eefa6af2bfea /wrappers | |
| parent | 003979cb014f16fe4ffad62ce979e55439ec6ea2 (diff) | |
All: Get rid of debug arg in Register
Diffstat (limited to 'wrappers')
| -rw-r--r-- | wrappers/python/eduvpn_common/loader.py | 1 | ||||
| -rw-r--r-- | wrappers/python/eduvpn_common/main.py | 3 |
2 files changed, 1 insertions, 3 deletions
diff --git a/wrappers/python/eduvpn_common/loader.py b/wrappers/python/eduvpn_common/loader.py index d458cc4..888b53f 100644 --- a/wrappers/python/eduvpn_common/loader.py +++ b/wrappers/python/eduvpn_common/loader.py @@ -85,7 +85,6 @@ def initialize_functions(lib: CDLL) -> None: c_char_p, c_char_p, VPNStateChange, - c_int, ], c_void_p, ) diff --git a/wrappers/python/eduvpn_common/main.py b/wrappers/python/eduvpn_common/main.py index 827ddfc..2bd221d 100644 --- a/wrappers/python/eduvpn_common/main.py +++ b/wrappers/python/eduvpn_common/main.py @@ -127,7 +127,7 @@ class EduVPN(object): global global_object global_object = None - def register(self, debug: bool = False) -> None: + def register(self) -> None: """Register the Go shared library. This makes sure the FSM is initialized and that we can call Go functions @@ -144,7 +144,6 @@ class EduVPN(object): self.version, self.config_directory, state_callback, - debug, ) if register_err: |
