(self, mod, display, colItem)
| 71 | return formatPrice(stuff, priceObj) |
| 72 | |
| 73 | def delayedText(self, mod, display, colItem): |
| 74 | sPrice = ServicePrice.getInstance() |
| 75 | |
| 76 | def callback(item): |
| 77 | priceObj = item[0] |
| 78 | colItem.SetText(formatPrice(mod, priceObj)) |
| 79 | |
| 80 | display.SetItem(colItem) |
| 81 | |
| 82 | sPrice.getPrices([mod.item], callback, waitforthread=True) |
| 83 | |
| 84 | def getImageId(self, mod): |
| 85 | return -1 |
nothing calls this directly
no test coverage detected