MCPcopy Index your code
hub / github.com/pyfa-org/Pyfa / getSkillGroups

Method getSkillGroups

service/character.py:275–281  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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):

Callers 1

populateSkillTreeMethod · 0.80

Calls 2

getCategoryMethod · 0.80
appendMethod · 0.45

Tested by

no test coverage detected