Skip to content

Commit

Permalink
Fixes typing of run_flow_in_subprocess (#16883)
Browse files Browse the repository at this point in the history
  • Loading branch information
desertaxle authored Jan 28, 2025
1 parent c2e0a1e commit ddd83c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/prefect/flow_engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -1548,7 +1548,7 @@ def run_flow_in_subprocess(
flow: "Flow[..., Any]",
flow_run: "FlowRun | None" = None,
parameters: dict[str, Any] | None = None,
wait_for: Iterable[PrefectFuture[R]] | None = None,
wait_for: Iterable[PrefectFuture[Any]] | None = None,
context: dict[str, Any] | None = None,
) -> multiprocessing.context.SpawnProcess:
"""
Expand Down

0 comments on commit ddd83c6

Please sign in to comment.