From 0b57d70aa50eadbfe22de517190694c1f89df8d3 Mon Sep 17 00:00:00 2001 From: Malware Utkonos Date: Sun, 28 Dec 2025 00:51:32 -0500 Subject: [PATCH] Show that a ProjectFile handle can be loaded like this. --- python/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/__init__.py b/python/__init__.py index efc655d0b4..10b27ec3e0 100644 --- a/python/__init__.py +++ b/python/__init__.py @@ -411,7 +411,7 @@ def load(*args, **kwargs) -> BinaryView: """ Opens a BinaryView object. - :param Union[str, bytes, bytearray, 'databuffer.DataBuffer', 'os.PathLike'] source: a file or byte stream to load into a virtual memory space + :param Union[str, bytes, bytearray, 'databuffer.DataBuffer', 'os.PathLike', 'project.ProjectFile'] source: a file or byte stream to load into a virtual memory space :param bool update_analysis: whether or not to run :func:`update_analysis_and_wait` after opening a :py:class:`BinaryView`, defaults to ``True`` :param callback progress_func: optional function to be called with the current progress and total count for BNDB files only :param dict options: a dictionary in the form {setting identifier string : object value}