(self)
| 96 | self.Parent.entityEditor.Bind(wx.EVT_CHOICE, self.contextChanged) |
| 97 | |
| 98 | def getImplantsFromContext(self): |
| 99 | sIS = ImplantSets.getInstance() |
| 100 | set_ = self.Parent.entityEditor.getActiveEntity() |
| 101 | if set_: |
| 102 | return sIS.getImplants(set_.ID) |
| 103 | return [] |
| 104 | |
| 105 | def addImplantToContext(self, item): |
| 106 | sIS = ImplantSets.getInstance() |
nothing calls this directly
no test coverage detected