Skip to content

Commit

Permalink
minor fix in LCA table formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
yalinli2 committed Nov 12, 2024
1 parent cac89b3 commit d9b4f4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qsdsan/_lca.py
Original file line number Diff line number Diff line change
Expand Up @@ -755,7 +755,7 @@ def get_impact_table(self, category, annual=False):
item_dct[key] = []
for other_ID in self.other_items.keys():
other = self.other_items[other_ID]['item']
item_dct['Other'].append(f'{other_ID} [{other.functional_unit}]')
item_dct['Other'].append(f'{other_ID}')
quantity = self.other_items[other_ID]['quantity']
item_dct['Quantity'].append(quantity)
for ind in self.indicators:
Expand Down

0 comments on commit d9b4f4e

Please sign in to comment.