From 7d8c7e44e6ee6f063c44db4e9e7380e69b8d5170 Mon Sep 17 00:00:00 2001 From: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Date: Tue, 7 Oct 2025 16:38:21 +1100 Subject: [PATCH] docs(mm): remove extraneous comment --- invokeai/backend/model_manager/load/load_base.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/invokeai/backend/model_manager/load/load_base.py b/invokeai/backend/model_manager/load/load_base.py index c4d71bfe31..a4004afba7 100644 --- a/invokeai/backend/model_manager/load/load_base.py +++ b/invokeai/backend/model_manager/load/load_base.py @@ -89,14 +89,6 @@ class LoadedModel(LoadedModelWithoutConfig): self.config = config -# TODO(MM2): -# Some "intermediary" subclasses in the ModelLoaderBase class hierarchy define methods that their subclasses don't -# know about. I think the problem may be related to this class being an ABC. -# -# For example, GenericDiffusersLoader defines `get_hf_load_class()`, and StableDiffusionDiffusersModel attempts to -# call it. However, the method is not defined in the ABC, so it is not guaranteed to be implemented. - - class ModelLoaderBase(ABC): """Abstract base class for loading models into RAM/VRAM."""