mirror of
https://github.com/explosion/spaCy.git
synced 2025-08-10 15:14:56 +03:00
Correction
This commit is contained in:
parent
5d150f2fc0
commit
f8301b4033
|
@ -160,12 +160,12 @@ def print_run_help(project_dir: Path, subcommand: Optional[str] = None) -> None:
|
||||||
print(f"\nWorkflow consisting of {len(steps)} commands:")
|
print(f"\nWorkflow consisting of {len(steps)} commands:")
|
||||||
if contains_parallel:
|
if contains_parallel:
|
||||||
steps_data = [
|
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)
|
for i, step in enumerate(steps)
|
||||||
]
|
]
|
||||||
else:
|
else:
|
||||||
steps_data = [
|
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)
|
for i, step in enumerate(steps)
|
||||||
]
|
]
|
||||||
msg.table(steps_data)
|
msg.table(steps_data)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user