Skip to content
This repository was archived by the owner on Feb 20, 2025. It is now read-only.

Commit 8116949

Browse files
committed
fix: 2
1 parent 918e6fb commit 8116949

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hatchet_sdk/workflow_run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def result(self) -> Coroutine[None, None, dict[str, Any]]:
3434
def sync_result(self) -> dict[str, Any]:
3535
loop = get_active_event_loop()
3636
if loop is None:
37-
with EventLoopThread() as loop:
37+
with EventLoopThread() as loop: # type: ignore[call-arg]
3838
coro = self.workflow_listener.result(self.workflow_run_id)
3939
future = asyncio.run_coroutine_threadsafe(coro, loop)
4040
return future.result()

0 commit comments

Comments
 (0)