From f8dddeda2722cb45f5ef4410b5ff4d7be3faf1bd Mon Sep 17 00:00:00 2001 From: svlandeg Date: Mon, 29 Jun 2020 16:38:15 +0200 Subject: [PATCH] print help msg when just calling 'project' without args --- spacy/cli/project.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/cli/project.py b/spacy/cli/project.py index 185578392..44ff78f2b 100644 --- a/spacy/cli/project.py +++ b/spacy/cli/project.py @@ -202,7 +202,7 @@ def project_update_dvc_cli( msg.info(f"No changes found in {CONFIG_FILE}, no update needed") -app.add_typer(project_cli, name="project") +app.add_typer(project_cli, name="project", no_args_is_help=True) #################