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

Method project

python/collaboration/permission.py:38–47  ·  view source on GitHub ↗

Owning Project :return: Project object

(self)

Source from the content-addressed store, hash-verified

36
37 @property
38 def project(self) -> 'project.RemoteProject':
39 """
40 Owning Project
41
42 :return: Project object
43 """
44 value = core.BNCollaborationPermissionGetProject(self._handle)
45 if value is None:
46 raise RuntimeError(util._last_error())
47 return project.RemoteProject(handle=value)
48
49 @property
50 def url(self) -> str:

Callers

nothing calls this directly

Calls 1

RemoteProjectMethod · 0.80

Tested by

no test coverage detected