(self, booster)
| 278 | class HandledBoosterList(HandledList): |
| 279 | |
| 280 | def append(self, booster): |
| 281 | if booster.isInvalid: |
| 282 | HandledList.append(self, booster) |
| 283 | self.remove(booster) |
| 284 | return |
| 285 | if self.__slotCheck(booster): |
| 286 | HandledList.append(self, booster) |
| 287 | self.remove(booster) |
| 288 | return |
| 289 | HandledList.append(self, booster) |
| 290 | |
| 291 | def insert(self, idx, booster): |
| 292 | if booster.isInvalid: |
nothing calls this directly
no test coverage detected