summaryrefslogtreecommitdiff
path: root/wrappers/python/eduvpncommon/__init__.py
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2022-02-14 13:48:15 +0100
committerjwijenbergh <jeroenwijenbergh@protonmail.com>2022-04-05 12:26:12 +0200
commit943fd5723cb4fd9a916b8baa6858c5895e8172cb (patch)
treefc9ebd50d0e467604e90de921e3856404462a87b /wrappers/python/eduvpncommon/__init__.py
parentc961faa8d7ba02e601586c3ce531b2329c7b258e (diff)
Python: Move error class to a separate file
Signed-off-by: jwijenbergh <jeroenwijenbergh@protonmail.com>
Diffstat (limited to 'wrappers/python/eduvpncommon/__init__.py')
-rw-r--r--wrappers/python/eduvpncommon/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wrappers/python/eduvpncommon/__init__.py b/wrappers/python/eduvpncommon/__init__.py
index b14b2af..52efa05 100644
--- a/wrappers/python/eduvpncommon/__init__.py
+++ b/wrappers/python/eduvpncommon/__init__.py
@@ -25,7 +25,7 @@ class GoSlice(Structure):
@staticmethod
def make(bs: bytes) -> "GoSlice":
- return GoSlice((c_char * len(bs))(*bs), len(bs), len(bs))
+ return GoSlice((c_char * len(bs))(*bs), len(bs), len(bs)) # type: ignore
class DataError(Structure):