Fix `visualize_dataset.py --help` (#241)
This commit is contained in:
parent
cf15cba5fc
commit
bd3111f28b
|
@ -224,7 +224,8 @@ def main():
|
||||||
help=(
|
help=(
|
||||||
"Mode of viewing between 'local' or 'distant'. "
|
"Mode of viewing between 'local' or 'distant'. "
|
||||||
"'local' requires data to be on a local machine. It spawns a viewer to visualize the data locally. "
|
"'local' requires data to be on a local machine. It spawns a viewer to visualize the data locally. "
|
||||||
"'distant' creates a server on the distant machine where the data is stored. Visualize the data by connecting to the server with `rerun ws://localhost:PORT` on the local machine."
|
"'distant' creates a server on the distant machine where the data is stored. "
|
||||||
|
"Visualize the data by connecting to the server with `rerun ws://localhost:PORT` on the local machine."
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
|
@ -245,8 +246,8 @@ def main():
|
||||||
default=0,
|
default=0,
|
||||||
help=(
|
help=(
|
||||||
"Save a .rrd file in the directory provided by `--output-dir`. "
|
"Save a .rrd file in the directory provided by `--output-dir`. "
|
||||||
"It also deactivates the spawning of a viewer. ",
|
"It also deactivates the spawning of a viewer. "
|
||||||
"Visualize the data by running `rerun path/to/file.rrd` on your local machine.",
|
"Visualize the data by running `rerun path/to/file.rrd` on your local machine."
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
|
|
Loading…
Reference in New Issue