bom_csv_grouped_by_value_with_fp.py: fix compatibility with python < 3.9

This commit is contained in:
jean-pierre charras 2023-05-04 08:48:39 +02:00
parent c4668c1d3a
commit 8a52941624
1 changed files with 3 additions and 4 deletions

View File

@ -62,12 +62,11 @@ for group in grouped:
# Add the reference of every component in the group and keep a reference
# to the component so that the other data can be filled in once per group
for component in group:
refs += fromNetlistText( component.getRef() ) + ", "
if refs != "":
refs += ", "
refs += fromNetlistText( component.getRef() )
c = component
# remove last, not needed trailing comma and whitespace
refs = refs.removesuffix(', ')
# Fill in the component groups common data
out.writerow([refs, len(group),
fromNetlistText( c.getValue() ),