From 28a1d026f38732b7c60746b4e6a66a9be78fcf81 Mon Sep 17 00:00:00 2001 From: Scott Stevenson Date: Tue, 10 Dec 2024 14:41:14 +0000 Subject: [PATCH] Change simulator UI help text to refer to directory (#839) Co-authored-by: Saaketh Narayan --- simulation/interfaces/widgets.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/simulation/interfaces/widgets.py b/simulation/interfaces/widgets.py index 529e3411e..ed9eacea1 100644 --- a/simulation/interfaces/widgets.py +++ b/simulation/interfaces/widgets.py @@ -89,9 +89,9 @@ def stream_entry(component: DeltaGenerator, on = component.toggle('use `index.json`', key=str(key) + 'toggle') if add_stream else None if on or not add_stream: path = component.text_input( - 'path to `index.json`', - value='/absolute/path/to/index.json' if defaults is None else defaults['path'], - help='path to the `index.json` file for this stream. \ + 'path to directory containing `index.json`', + value='/absolute/path/to/dir/' if defaults is None else defaults['path'], + help='path to the directory containing the `index.json` file for this stream. \ the `index.json` file contains information about the shards in \ your dataset.', key=str(key) + 'path',