fix(app): issue w/ import forward ref

This commit is contained in:
psychedelicious 2024-09-21 19:22:57 +10:00 committed by Kent Keirsey
parent c0609f760f
commit 62ba277268

View File

@ -63,7 +63,7 @@ class EventServiceBase:
invocation: "BaseInvocation",
message: str,
percentage: float | None = None,
image: ProgressImage | None = None,
image: "ProgressImage | None" = None,
) -> None:
"""Emitted at periodically during an invocation"""
self.dispatch(InvocationProgressEvent.build(queue_item, invocation, message, percentage, image))