()
| 273 | |
| 274 | @staticmethod |
| 275 | def getSkillGroups(): |
| 276 | cat = eos.db.getCategory(16) |
| 277 | groups = [] |
| 278 | for grp in cat.groups: |
| 279 | if grp.published: |
| 280 | groups.append((grp.ID, grp.name)) |
| 281 | return sorted(groups, key=lambda x: x[1]) |
| 282 | |
| 283 | @staticmethod |
| 284 | def getSkills(groupID): |
no test coverage detected