From 943fd5723cb4fd9a916b8baa6858c5895e8172cb Mon Sep 17 00:00:00 2001 From: jwijenbergh Date: Mon, 14 Feb 2022 13:48:15 +0100 Subject: Python: Move error class to a separate file Signed-off-by: jwijenbergh --- wrappers/python/eduvpncommon/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'wrappers/python/eduvpncommon/__init__.py') 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): -- cgit v1.2.3