()
| 207 | @staticmethod |
| 208 | def TranslateValueUnit(value, unitName, unitDisplayName): |
| 209 | def itemIDCallback(): |
| 210 | item = Market.getInstance().getItem(value) |
| 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) |
nothing calls this directly
no test coverage detected