Skip to content

Commit

Permalink
Clarify a comment
Browse files Browse the repository at this point in the history
  • Loading branch information
kvid committed Apr 10, 2021
1 parent f1cb7e2 commit 8de8a69
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/wireviz/wv_bom.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,8 @@ def bom_list(bom: List[BOMEntry]) -> List[List[str]]:
for fieldname in BOM_COLUMNS_OPTIONAL: # Include only those optional BOM columns that are in use.
if any(entry.get(fieldname) for entry in bom):
keys.append(fieldname)
# list of staic bom header names, headers not specified here are generated by capitilising the internal name
# Custom mapping from internal name to BOM column headers.
# Headers not specified here are generated by capitilising the internal name.
bom_headings = {
"description": "Item", # TODO: Remove this line to use 'Description' in BOM heading.
"pn": "P/N",
Expand Down

0 comments on commit 8de8a69

Please sign in to comment.