(self, parent)
| 59 | |
| 60 | class ImplantSetEntityEditor(EntityEditor): |
| 61 | def __init__(self, parent): |
| 62 | EntityEditor.__init__(self, parent, _t("Implant Set")) |
| 63 | self.SetEditorValidator(ImplantTextValidor) |
| 64 | |
| 65 | def getEntitiesFromContext(self): |
| 66 | sIS = ImplantSets.getInstance() |
nothing calls this directly
no test coverage detected