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

Method exportSkills

gui/characterEditor.py:473–482  ·  view source on GitHub ↗
(self, evt)

Source from the content-addressed store, hash-verified

471 self.charEditor.entityEditor.refreshEntityList(char)
472
473 def exportSkills(self, evt):
474 char = self.charEditor.entityEditor.getActiveEntity()
475
476 skills = sorted(char.__class__.getSkillNameMap().keys())
477 list = ""
478 for s in skills:
479 skill = char.getSkill(s)
480 list += "{} {}\n".format(skill.item.name, skill.level)
481
482 toClipboard(list)
483
484 def exportSkillsSuperCondensed(self, evt):
485 char = self.charEditor.entityEditor.getActiveEntity()

Callers

nothing calls this directly

Calls 5

toClipboardFunction · 0.90
getActiveEntityMethod · 0.80
getSkillNameMapMethod · 0.80
getSkillMethod · 0.80
keysMethod · 0.45

Tested by

no test coverage detected