MCPcopy Index your code
hub / github.com/feast-dev/feast / delete_project

Method delete_project

sdk/python/feast/feature_store.py:4220–4231  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers 1

DeleteProjectMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected