Skip to content

Commit

Permalink
Change simulator UI help text to refer to directory (#839)
Browse files Browse the repository at this point in the history
Co-authored-by: Saaketh Narayan <[email protected]>
  • Loading branch information
srstevenson and Saaketh Narayan authored Dec 10, 2024
1 parent 65f7c22 commit 28a1d02
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions simulation/interfaces/widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 28a1d02

Please sign in to comment.