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

Method getSkills

service/character.py:284–290  ·  view source on GitHub ↗
(groupID)

Source from the content-addressed store, hash-verified

282
283 @staticmethod
284 def getSkills(groupID):
285 group = eos.db.getGroup(groupID)
286 skills = []
287 for skill in group.items:
288 if skill.published is True:
289 skills.append((skill.ID, skill.name))
290 return sorted(skills, key=lambda x: x[1])
291
292 @staticmethod
293 def getSkillsByName(text):

Callers 1

runMethod · 0.45

Calls 2

getGroupMethod · 0.80
appendMethod · 0.45

Tested by

no test coverage detected