mirror of
https://github.com/explosion/spaCy.git
synced 2025-08-13 08:34:57 +03:00
Fixed formatting issues
This commit is contained in:
parent
a2bd489a8c
commit
8c8b81a413
|
@ -76,7 +76,9 @@ def project_document(
|
|||
if isinstance(step, str):
|
||||
rendered_steps.append(md.code(step))
|
||||
else:
|
||||
rendered_steps.append('[' + ', '.join(md.code(p_step) for p_step in step) + ']')
|
||||
rendered_steps.append(
|
||||
"[" + ", ".join(md.code(p_step) for p_step in step) + "]"
|
||||
)
|
||||
data.append([md.code(n), " → ".join(rendered_steps)])
|
||||
if data:
|
||||
md.add(md.title(3, "Workflows", "⏭"))
|
||||
|
|
Loading…
Reference in New Issue
Block a user