summaryrefslogtreecommitdiff
path: root/wrappers/python/src/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'wrappers/python/src/main.py')
-rw-r--r--wrappers/python/src/main.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/wrappers/python/src/main.py b/wrappers/python/src/main.py
index 008973d..87d2b53 100644
--- a/wrappers/python/src/main.py
+++ b/wrappers/python/src/main.py
@@ -156,20 +156,6 @@ class EduVPN(object):
if disconnect_err:
raise Exception(disconnect_err)
- def get_identifier(self) -> str:
- identifier, identifier_err = self.go_function(lib.GetIdentifier)
-
- if identifier_err:
- raise Exception(identifier_err)
-
- return identifier
-
- def set_identifier(self, identifier: str) -> None:
- identifier_err = self.go_function(lib.SetIdentifier, identifier)
-
- if identifier_err:
- raise Exception(identifier_err)
-
def set_search_server(self) -> None:
search_err = self.go_function(lib.SetSearchServer)