Update invokeai/app/services/batch_manager_storage.py

Co-authored-by: psychedelicious <4822129+psychedelicious@users.noreply.github.com>
This commit is contained in:
Brandon 2023-08-15 15:54:57 -04:00 committed by GitHub
parent 85105fc070
commit cc5755d5b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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):