Skip to content

Commit

Permalink
add experimental feature note
Browse files Browse the repository at this point in the history
  • Loading branch information
t-sasatani committed Nov 6, 2024
1 parent 4db38cf commit ef6d1db
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions miniscope_io/cli/update.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
required=False,
default=0,
type=int,
help="ID of the device to update. 0 will update all devices.",
help="[EXPERIMENTAL FEATURE] ID of the device to update. 0 (default) will update all devices.",
)
@click.option(
"-k",
Expand All @@ -43,7 +43,10 @@
"--batch",
required=False,
type=click.Path(exists=True, dir_okay=False),
help="YAML file that works as a batch file to update. Specify key and value pairs in the file.",
help=(
"[EXPERIMENTAL FEATURE] YAML file that works as a batch file to update."
"Specify key and value pairs in the file."
),
)
def update(port: str, key: str, value: int, device_id: int, batch: str) -> None:
"""
Expand Down Expand Up @@ -82,7 +85,7 @@ def update(port: str, key: str, value: int, device_id: int, batch: str) -> None:
required=False,
default=0,
type=int,
help="ID of the device to update. 0 will update all devices.",
help="[EXPERIMENTAL FEATURE] ID of the device to update. 0 (default) will update all devices.",
)
@click.option(
"--reboot",
Expand Down

0 comments on commit ef6d1db

Please sign in to comment.