From df7370f9d988517e89864522a65a9df2b09c129d Mon Sep 17 00:00:00 2001 From: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Date: Thu, 17 Aug 2023 12:16:34 +1000 Subject: [PATCH] chore(backend): remove unused code --- invokeai/app/services/batch_manager_storage.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/invokeai/app/services/batch_manager_storage.py b/invokeai/app/services/batch_manager_storage.py index 75a8aa99b8..490ac0a1bc 100644 --- a/invokeai/app/services/batch_manager_storage.py +++ b/invokeai/app/services/batch_manager_storage.py @@ -18,8 +18,6 @@ from invokeai.app.invocations.primitives import ImageField from pydantic import BaseModel, Field, Extra, parse_raw_as, StrictStr, StrictInt, StrictFloat, validator -invocations = BaseInvocation.get_invocations() -InvocationsUnion = Union[invocations] # type: ignore BatchDataType = Union[StrictStr, StrictInt, StrictFloat, ImageField]