From 3a8632c3fbb44c359d546cd60d8ed2873f37012b Mon Sep 17 00:00:00 2001 From: Ines Montani Date: Sat, 11 Jul 2020 19:21:22 +0200 Subject: [PATCH] Hide command from public --help for now Not sure we want this to be officially documented yet? --- spacy/cli/debug_model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/cli/debug_model.py b/spacy/cli/debug_model.py index 2e315cae5..d6efe13d6 100644 --- a/spacy/cli/debug_model.py +++ b/spacy/cli/debug_model.py @@ -7,7 +7,7 @@ from .. import util from ..lang.en import English -@app.command("debug-model") +@app.command("debug-model", hidden=True) def debug_model_cli( # fmt: off config_path: Path = Arg(..., help="Path to config file", exists=True),