summaryrefslogtreecommitdiff
path: root/python/binaryview.py
diff options
context:
space:
mode:
authorXusheng <xusheng@vector35.com>2020-10-09 16:42:19 +0800
committerXusheng <xusheng@vector35.com>2020-10-09 16:42:19 +0800
commit86a8f3b1609049b8c8fb3e0d3167641449362328 (patch)
tree8d31fcaa0eb231fb032a1d9fe60517ca21c64a57 /python/binaryview.py
parent307fe4be9208636e54f90a24f6d0deb56512069d (diff)
remove comma in Python code
Diffstat (limited to 'python/binaryview.py')
-rw-r--r--python/binaryview.py4
1 files changed, 2 insertions, 2 deletions
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):
<in set([0x1, 0x2, 0x3])>
>>>
"""
- 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")