(self, idx, implant)
| 248 | HandledList.append(self, implant) |
| 249 | |
| 250 | def insert(self, idx, implant): |
| 251 | if implant.isInvalid: |
| 252 | HandledList.insert(self, idx, implant) |
| 253 | self.remove(implant) |
| 254 | return |
| 255 | if self.__slotCheck(implant): |
| 256 | HandledList.insert(self, idx, implant) |
| 257 | self.remove(implant) |
| 258 | return |
| 259 | HandledList.insert(self, idx, implant) |
| 260 | |
| 261 | def makeRoom(self, implant): |
| 262 | # if needed, remove booster that was occupying slot |
nothing calls this directly
no test coverage detected