MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / project

Method project

python/collaboration/snapshot.py:439–448  ·  view source on GitHub ↗

Owning Project :return: Project object

(self)

Source from the content-addressed store, hash-verified

437
438 @property
439 def project(self) -> 'project.RemoteProject':
440 """
441 Owning Project
442
443 :return: Project object
444 """
445 value = core.BNCollaborationUndoEntryGetProject(self._handle)
446 if value is None:
447 raise RuntimeError(util._last_error())
448 return project.RemoteProject(handle=value)
449
450 @property
451 def remote(self) -> 'remote.Remote':

Callers

nothing calls this directly

Calls 1

RemoteProjectMethod · 0.80

Tested by

no test coverage detected