diff --git a/invokeai/app/services/batch_manager_storage.py b/invokeai/app/services/batch_manager_storage.py index b2249ffe77..a605a9728f 100644 --- a/invokeai/app/services/batch_manager_storage.py +++ b/invokeai/app/services/batch_manager_storage.py @@ -23,7 +23,7 @@ from pydantic import BaseModel, Field, Extra, parse_raw_as invocations = BaseInvocation.get_invocations() InvocationsUnion = Union[invocations] # type: ignore -BatchDataType = Union[str, int, float, ImageField] +BatchDataType = Union[StrictStr, StrictInt, StrictFloat, ImageField]``` class Batch(BaseModel):