(charID, skillID)
| 318 | |
| 319 | @staticmethod |
| 320 | def getSkillLevel(charID, skillID): |
| 321 | skill = eos.db.getCharacter(charID).getSkill(skillID) |
| 322 | return float(skill.level) if skill.learned else _t("Not learned"), skill.isDirty |
| 323 | |
| 324 | @staticmethod |
| 325 | def getDirtySkills(charID): |
nothing calls this directly
no test coverage detected