diff --git a/kiplot/bom/units.py b/kiplot/bom/units.py index cb44bd5c..94209b81 100644 --- a/kiplot/bom/units.py +++ b/kiplot/bom/units.py @@ -173,9 +173,10 @@ def compare_values(c1, c2): # Values match if u1 == u2: return True # Units match - if not u1: - return True # No units for component 1 - if not u2: - return True # No units for component 2 + # No longer posible because now we use the prefix to determine absent units + # if not u1: + # return True # No units for component 1 + # if not u2: + # return True # No units for component 2 return False