Skip to content

Commit 725a59c

Browse files
committed
chore: add interactive booleon
1 parent f3e19ca commit 725a59c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/fastcs_eiger/__main__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ def ioc(
5353
odin_ip: str | None = typer.Option(None, help="IP address of odin control server"),
5454
odin_port: int = typer.Option(8888, help="Port of odin control server"),
5555
log_level: LogLevel = LogLevel.TRACE,
56+
interactive: bool = False,
5657
):
5758
ui_path = OPI_PATH if OPI_PATH.is_dir() else Path.cwd() / "opi"
5859

@@ -80,7 +81,7 @@ def ioc(
8081
),
8182
]
8283
launcher = FastCS(controller, transports)
83-
launcher.run()
84+
launcher.run(interactive=interactive)
8485

8586

8687
# test with: python -m fastcs_eiger

0 commit comments

Comments
 (0)