Get group by item
(self, item)
| 586 | return marketGroup |
| 587 | |
| 588 | def getGroupByItem(self, item): |
| 589 | """Get group by item""" |
| 590 | if item.typeName in self.ITEMS_FORCEGROUP: |
| 591 | group = self.ITEMS_FORCEGROUP[item.typeName] |
| 592 | else: |
| 593 | group = item.group |
| 594 | return group |
| 595 | |
| 596 | def getCategoryByItem(self, item): |
| 597 | """Get category by item""" |
no outgoing calls
no test coverage detected