From 94391b2730dcc2e6cfe9f26d13569b15c6d1a0ad Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Tue, 21 Mar 2023 10:33:23 -0400 Subject: Update documentation for progress callbacks to indicate they must return True to continue the action --- python/__init__.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'python/__init__.py') diff --git a/python/__init__.py b/python/__init__.py index 1b36b2db..1fcdb77a 100644 --- a/python/__init__.py +++ b/python/__init__.py @@ -318,6 +318,8 @@ def load(*args, **kwargs) -> BinaryView: :rtype: :py:class:`BinaryView` :raises Exception: When a BinaryView could not be created + .. note:: The progress_func callback **must** return True to continue the load operation, False will abort the load operation. + :Example: >>> from binaryninja import * >>> with load("/bin/ls") as bv: -- cgit v1.3.1