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."""