Skip to content

Commit 0d38949

Browse files
committed
markdown section
1 parent 7d70e3e commit 0d38949

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/update_lib/show_deps.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ def format_deps(
188188
if hard_deps:
189189
lines.append(f"packages: {hard_deps}")
190190

191-
lines.append("dependencies:")
191+
lines.append("\ndependencies:")
192192
lines.extend(
193193
format_deps_tree(
194194
cpython_prefix, lib_prefix, max_depth, soft_deps={name}, _visited=_visited
@@ -227,9 +227,9 @@ def count_tests(t: dict) -> int:
227227

228228
total = count_tests(tree)
229229
if total == 0 and not children:
230-
lines.append(f"dependent tests: (no tests depend on {module})")
230+
lines.append(f"\ndependent tests: (no tests depend on {module})")
231231
return lines
232-
lines.append(f"dependent tests: ({total} tests)")
232+
lines.append(f"\ndependent tests: ({total} tests)")
233233

234234
# Check if module is up-to-date
235235
synced = is_up_to_date(module.split(".")[0], cpython_prefix, lib_prefix)

0 commit comments

Comments
 (0)