From 8bb82fc025c732f4a854c108a2d96429bdfc6b72 Mon Sep 17 00:00:00 2001 From: eecavanna <134325062+eecavanna@users.noreply.github.com> Date: Tue, 28 Jan 2025 17:11:37 -0800 Subject: [PATCH] Restore trailing pipe character to each Markdown table row --- src/scripts/make_typecode_to_class_map.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/make_typecode_to_class_map.py b/src/scripts/make_typecode_to_class_map.py index a1e5de0675..45f28e685c 100644 --- a/src/scripts/make_typecode_to_class_map.py +++ b/src/scripts/make_typecode_to_class_map.py @@ -132,7 +132,7 @@ def main(): collection_names = get_collection_names_for_class_name(class_name) formatted_collection_names = [f"`{collection_name}`" for collection_name in collection_names] collection_cell = ", ".join(formatted_collection_names) # if multiple exist, separates them with commas - md_table_lines.append(f"| {typecode_cell} | {class_cell} | {collection_cell}") + md_table_lines.append(f"| {typecode_cell} | {class_cell} | {collection_cell} |") # Build the entire Markdown document. md_document = make_document(md_table="\n".join(md_table_lines))