Deletes a project from the registry. Args: name: Name of the project to delete. commit: Whether the change should be persisted immediately. Raises: ProjectNotFoundException: The project could not be found.
(self, name: str, commit: bool = True)
| 4218 | return self.registry.get_project(name or self.project) |
| 4219 | |
| 4220 | def delete_project(self, name: str, commit: bool = True) -> None: |
| 4221 | """ |
| 4222 | Deletes a project from the registry. |
| 4223 | |
| 4224 | Args: |
| 4225 | name: Name of the project to delete. |
| 4226 | commit: Whether the change should be persisted immediately. |
| 4227 | |
| 4228 | Raises: |
| 4229 | ProjectNotFoundException: The project could not be found. |
| 4230 | """ |
| 4231 | return self.registry.delete_project(name, commit=commit) |
| 4232 | |
| 4233 | def list_saved_datasets( |
| 4234 | self, allow_cache: bool = False, tags: Optional[dict[str, str]] = None |