From 26211b0f7276fca97aaee67e82fa4a2f57e202f2 Mon Sep 17 00:00:00 2001 From: Ravi Vooda Date: Mon, 20 Jul 2026 21:43:42 +0000 Subject: [PATCH] feat(cli): expose the dataset command group Remove hidden=True from the `lightning dataset` group so `dataset download`/`upload` show up in `lightning --help`, and update the group help to reflect that it does both upload and download. Co-Authored-By: Claude Opus 4.8 --- python/lightning_sdk/cli/groups.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/lightning_sdk/cli/groups.py b/python/lightning_sdk/cli/groups.py index ae8782c4..7d00a8c0 100644 --- a/python/lightning_sdk/cli/groups.py +++ b/python/lightning_sdk/cli/groups.py @@ -158,9 +158,9 @@ def license() -> None: # noqa: A001 """View and manage product licenses.""" -@click.group(name="dataset", cls=LightningGroup, hidden=True) +@click.group(name="dataset", cls=LightningGroup) def dataset() -> None: - """Download datasets.""" + """Upload and download datasets.""" @click.command(name="cp", cls=LightningCommand)