We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
test
1 parent 662baa8 commit ccc6fabCopy full SHA for ccc6fab
1 file changed
codesectools/cli.py
@@ -160,7 +160,10 @@ def get_downloadable() -> dict[str, DownloadableRequirement | Dataset]:
160
161
162
@cli.command(hidden=download_hidden)
163
-def download(name: download_arg_type = download_arg_value, test: bool = False) -> None:
+def download(
164
+ name: download_arg_type = download_arg_value,
165
+ test: Annotated[bool, typer.Option(hidden=True)] = False,
166
+) -> None:
167
"""Download and install any missing resources that are available for download."""
168
if name is None:
169
print("All downloadable resources have been retrieved.")
0 commit comments