summaryrefslogtreecommitdiff
path: root/wrappers/python/src/main.py
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2022-07-22 17:16:13 +0200
committerjwijenbergh <jeroenwijenbergh@protonmail.com>2022-07-22 17:16:13 +0200
commit0c6233ab691973859b6d636e6d9fdddd2a6acd5e (patch)
treec11697eb3b00ff1d6a073a5f3c6de3337cf5e463 /wrappers/python/src/main.py
parent80218da58eca9c95870770f88e477891e8fdb50a (diff)
State + Exports: Implement should show renew button boolean
Diffstat (limited to 'wrappers/python/src/main.py')
-rw-r--r--wrappers/python/src/main.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/wrappers/python/src/main.py b/wrappers/python/src/main.py
index 784e622..a2a0d14 100644
--- a/wrappers/python/src/main.py
+++ b/wrappers/python/src/main.py
@@ -206,3 +206,6 @@ class EduVPN(object):
if location_err:
raise Exception(location_err)
+
+ def should_renew_button(self) -> bool:
+ return self.go_function(lib.ShouldRenewButton)