Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/blueapi/cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,12 @@ def run_plan(
instrument_session: str,
parameters: TaskParameters,
) -> None:
"""Run a plan with parameters"""
"""Run a plan with parameters

To run in the foreground and block until it is complete, stomp
configuration is required. Without stomp configuration, '--bg' can be used
to start a plan in the background.
"""

client = cast(BlueapiClient, obj["client"])
task = TaskRequest(
Expand Down
Loading