Add excludeBOM=True to hellen-one-kicad-bom-plugin.py https://github.com/andreika-git/hellen-one/issues/363

This commit is contained in:
andreika-git 2024-02-04 18:22:16 +02:00
parent a21ead432b
commit 27fd5517d9
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ def writerow( acsvwriter, columns ):
utf8row.append( str(col) )
acsvwriter.writerow( utf8row )
components = net.getInterestingComponents()
components = net.getInterestingComponents(excludeBOM=True)
# Output a field delimited header line
writerow( out, ['Comment', 'Designator', 'Footprint', 'LCSC Part #'] )