Merge branch 'refactor/model-manager-3' of github.com:invoke-ai/InvokeAI into refactor/model-manager-3

This commit is contained in:
Lincoln Stein
2023-12-04 21:12:40 -05:00

View File

@ -209,7 +209,7 @@ class ModelInstallServiceBase(ABC):
"""Remove model with indicated key from the database.""" """Remove model with indicated key from the database."""
@abstractmethod @abstractmethod
def delete(self, key: str) -> None: # noqa D102 def delete(self, key: str) -> None:
"""Remove model with indicated key from the database. Delete its files only if they are within our models directory.""" """Remove model with indicated key from the database. Delete its files only if they are within our models directory."""
@abstractmethod @abstractmethod