diff options
Diffstat (limited to 'wrappers/python/src/main.py')
| -rw-r--r-- | wrappers/python/src/main.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/wrappers/python/src/main.py b/wrappers/python/src/main.py index 4868fca..84be0ab 100644 --- a/wrappers/python/src/main.py +++ b/wrappers/python/src/main.py @@ -134,6 +134,10 @@ class EduVPN(object): self.location_event = threading.Event() return self.get_config(url, lib.GetConfigSecureInternet, force_tcp) + def go_back(self) -> None: + # Ignore the error + self.go_function(lib.GoBack) + def set_connected(self) -> None: connect_err = self.go_function(lib.SetConnected) |
