From f8301b4033c07361c264b6d7f35cd02cbdabb9ac Mon Sep 17 00:00:00 2001 From: richardpaulhudson Date: Wed, 20 Jul 2022 15:17:16 +0200 Subject: [PATCH] Correction --- spacy/cli/project/run.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spacy/cli/project/run.py b/spacy/cli/project/run.py index f54d38757..359c71979 100644 --- a/spacy/cli/project/run.py +++ b/spacy/cli/project/run.py @@ -160,12 +160,12 @@ def print_run_help(project_dir: Path, subcommand: Optional[str] = None) -> None: print(f"\nWorkflow consisting of {len(steps)} commands:") if contains_parallel: steps_data = [ - (f"{i + 1}. {step[0]} {step[1]}", commands[step[1]].get("help", "")) + (f"{i + 1}.", f"{step[0]} {step[1]}", commands[step[1]].get("help", "")) for i, step in enumerate(steps) ] else: steps_data = [ - (f"{i + 1}. {step[1]}", commands[step[1]].get("help", "")) + (f"{i + 1}.", f"{step[1]}", commands[step[1]].get("help", "")) for i, step in enumerate(steps) ] msg.table(steps_data)