Skip to content

Commit d8bed36

Browse files
authored
Remove '-o' shorthand for stdout from script_add_args (#11043)
1 parent 18c5423 commit d8bed36

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

docs/content/reference/migration/migration-0-25.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ Use `--web-viewer` instead.
1515
This feature has been defunct for a while. A better replacement can be tracked [in this issue](https://github.com/rerun-io/rerun/issues/11024).
1616

1717

18+
## Removed the `-o` CLI argument shorthand for `--stdout` in `script_add_args`
19+
20+
Use `--stdout` directly instead.
21+
22+
1823
## Flush takes an optional timeout, and returns errors
1924
When flushing a recording stream you can now give it a maximum time for how long it should block.
2025
The flush will block until either it completes, fails (e.g. because of connection loss), or the timeout is reached.

rerun_py/rerun_sdk/rerun/script_helpers.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ def script_add_args(parser: ArgumentParser) -> None:
5858
parser.add_argument("--url", type=str, default=None, help="Connect to this Rerun URL")
5959
parser.add_argument("--save", type=str, default=None, help="Save data to a .rrd file at this path")
6060
parser.add_argument(
61-
"-o",
6261
"--stdout",
6362
dest="stdout",
6463
action="store_true",

0 commit comments

Comments
 (0)