()
| 211 | return "%s (%d)" % (item.name, value) if item is not None else str(value) |
| 212 | |
| 213 | def groupIDCallback(): |
| 214 | group = Market.getInstance().getGroup(value) |
| 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) |
nothing calls this directly
no test coverage detected