(self, parent)
| 88 | |
| 89 | class CharacterEntityEditor(EntityEditor): |
| 90 | def __init__(self, parent): |
| 91 | EntityEditor.__init__(self, parent, _t("Character")) |
| 92 | self.SetEditorValidator(CharacterTextValidor) |
| 93 | |
| 94 | def getEntitiesFromContext(self): |
| 95 | sChar = Character.getInstance() |
nothing calls this directly
no test coverage detected