From 40c19fd3079b000007ac1c11256ff4a8c2180614 Mon Sep 17 00:00:00 2001 From: KV Date: Tue, 6 Apr 2021 20:54:47 +0200 Subject: [PATCH] Clarify a comment --- src/wireviz/wv_bom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wireviz/wv_bom.py b/src/wireviz/wv_bom.py index 78505aa8..62515dfd 100644 --- a/src/wireviz/wv_bom.py +++ b/src/wireviz/wv_bom.py @@ -138,7 +138,7 @@ 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 + # List of custom BOM header names, i.e. different from capitalize() of the internal name. bom_headings = { "description": "Item", # TODO: Remove this line to use 'Description' in BOM heading. "pn": "P/N",