MCPcopy Create free account
hub / github.com/pyfa-org/Pyfa / append

Method append

eos/effectHandlerHelpers.py:239–248  ·  view source on GitHub ↗
(self, implant)

Source from the content-addressed store, hash-verified

237class 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:

Callers

nothing calls this directly

Calls 3

__slotCheckMethod · 0.95
appendMethod · 0.45
removeMethod · 0.45

Tested by

no test coverage detected