From 86a8f3b1609049b8c8fb3e0d3167641449362328 Mon Sep 17 00:00:00 2001 From: Xusheng Date: Fri, 9 Oct 2020 16:42:19 +0800 Subject: remove comma in Python code --- python/binaryview.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python/binaryview.py') diff --git a/python/binaryview.py b/python/binaryview.py index 503bd68e..b46587e6 100644 --- a/python/binaryview.py +++ b/python/binaryview.py @@ -4715,8 +4715,8 @@ class BinaryView(object): >>> """ - result = core.BNPossibleValueSet(); - errors = ctypes.c_char_p(); + result = core.BNPossibleValueSet() + errors = ctypes.c_char_p() if not core.BNParsePossibleValueSet(self.handle, value, state, result, here, errors): if errors: error_str = errors.value.decode("utf-8") -- cgit v1.3.1