Get groups from given category
(self, cat)
| 730 | return variations |
| 731 | |
| 732 | def getGroupsByCategory(self, cat): |
| 733 | """Get groups from given category""" |
| 734 | groups = set([grp for grp in cat.groups if self.getPublicityByGroup(grp)]) |
| 735 | |
| 736 | return groups |
| 737 | |
| 738 | @staticmethod |
| 739 | def getMarketGroupChildren(mg): |
no test coverage detected