Delete a project from the remote :param project: Project to delete :raises: RuntimeError if there was an error
(self, project: 'project.RemoteProject')
| 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']: |