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

Method delete_project

python/collaboration/remote.py:417–425  ·  view source on GitHub ↗

Delete a project from the remote :param project: Project to delete :raises: RuntimeError if there was an error

(self, project: 'project.RemoteProject')

Source from the content-addressed store, hash-verified

415 raise RuntimeError(util._last_error())
416
417 def delete_project(self, project: 'project.RemoteProject'):
418 """
419 Delete a project from the remote
420
421 :param project: Project to delete
422 :raises: RuntimeError if there was an error
423 """
424 if not core.BNRemoteDeleteProject(self._handle, project._handle):
425 raise RuntimeError(util._last_error())
426
427 @property
428 def groups(self) -> List['group.Group']:

Callers 2

mainFunction · 0.95
mainFunction · 0.45

Calls

no outgoing calls

Tested by 1

mainFunction · 0.36