diff options
| author | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2023-03-01 00:35:39 +0100 |
|---|---|---|
| committer | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2023-03-01 00:35:39 +0100 |
| commit | b0236124fb328f5d1e863f3c76e6d57273519a15 (patch) | |
| tree | 9b28b3637061f8ff1637e88adf8914a069baf5b1 /wrappers/python/eduvpn_common/loader.py | |
| parent | a1519ff7685ac987f9d70b1fb49bf777028d49b0 (diff) | |
Format: Run black and gofumpt
Diffstat (limited to 'wrappers/python/eduvpn_common/loader.py')
| -rw-r--r-- | wrappers/python/eduvpn_common/loader.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/wrappers/python/eduvpn_common/loader.py b/wrappers/python/eduvpn_common/loader.py index 202e2da..036c201 100644 --- a/wrappers/python/eduvpn_common/loader.py +++ b/wrappers/python/eduvpn_common/loader.py @@ -108,6 +108,7 @@ def initialize_functions(lib: CDLL) -> None: c_char_p, c_char_p, c_char_p, + c_char_p, VPNStateChange, c_int, ], c_void_p @@ -157,5 +158,10 @@ def initialize_functions(lib: CDLL) -> None: c_int, ], c_void_p lib.ShouldRenewButton.argtypes, lib.ShouldRenewButton.restype = [], int - lib.StartFailover.argtypes, lib.StartFailover.restype = [c_char_p, c_char_p, c_int, ReadRxBytes], DataError + lib.StartFailover.argtypes, lib.StartFailover.restype = [ + c_char_p, + c_char_p, + c_int, + ReadRxBytes, + ], DataError lib.CancelFailover.argtypes, lib.CancelFailover.restype = [c_char_p], c_void_p |
