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

Method remote

python/collaboration/project.py:127–136  ·  view source on GitHub ↗

Owning Remote :return: Remote object

(self)

Source from the content-addressed store, hash-verified

125
126 @property
127 def remote(self) -> 'remote.Remote':
128 """
129 Owning Remote
130
131 :return: Remote object
132 """
133 value = core.BNRemoteProjectGetRemote(self._handle)
134 if value is None:
135 raise RuntimeError(util._last_error())
136 return remote.Remote(handle=value)
137
138 @property
139 def url(self):

Callers

nothing calls this directly

Calls 1

RemoteMethod · 0.80

Tested by

no test coverage detected