From fa107f95f675b83029814d19a417699ec5857471 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Sun, 26 Mar 2017 09:28:59 -0500 Subject: [PATCH] Remove unused train_config command --- spacy/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/__main__.py b/spacy/__main__.py index 6e96893ea..7ec3f535a 100644 --- a/spacy/__main__.py +++ b/spacy/__main__.py @@ -14,7 +14,7 @@ from spacy.cli import train as cli_train class CLI(object): """Command-line interface for spaCy""" - commands = ('download', 'link', 'info', 'package', 'train', 'train_config') + commands = ('download', 'link', 'info', 'package', 'train') @plac.annotations( model=("model to download (shortcut or model name)", "positional", None, str),