()
| 215 | return "%s (%d)" % (group.name, value) if group is not None else str(value) |
| 216 | |
| 217 | def attributeIDCallback(): |
| 218 | attribute = Attribute.getInstance().getAttributeInfo(value) |
| 219 | return "%s (%d)" % (attribute.name.capitalize(), value) |
| 220 | |
| 221 | trans = { |
| 222 | "Inverse Absolute Percent": (lambda: (1 - value) * 100, unitName), |
nothing calls this directly
no test coverage detected