(self, implant)
| 237 | class HandledImplantList(HandledList): |
| 238 | |
| 239 | def append(self, implant): |
| 240 | if implant.isInvalid: |
| 241 | HandledList.append(self, implant) |
| 242 | self.remove(implant) |
| 243 | return |
| 244 | if self.__slotCheck(implant): |
| 245 | HandledList.append(self, implant) |
| 246 | self.remove(implant) |
| 247 | return |
| 248 | HandledList.append(self, implant) |
| 249 | |
| 250 | def insert(self, idx, implant): |
| 251 | if implant.isInvalid: |
nothing calls this directly
no test coverage detected