Skip to content

Commit

Permalink
Restore trailing pipe character to each Markdown table row
Browse files Browse the repository at this point in the history
  • Loading branch information
eecavanna authored Jan 29, 2025
1 parent 0873202 commit 8bb82fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripts/make_typecode_to_class_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit 8bb82fc

Please sign in to comment.