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

Method handler

eos/gamedata.py:61–71  ·  view source on GitHub ↗

The handler for the effect, It is automaticly fetched from effects/ .py if the file exists the first time this property is accessed.

(self)

Source from the content-addressed store, hash-verified

59
60 @property
61 def handler(self):
62 """
63 The handler for the effect,
64 It is automaticly fetched from effects/<effectName>.py if the file exists
65 the first time this property is accessed.
66 """
67 if not self.__generated:
68 pyfalog.debug("Generating effect: {0} ({1}) [runTime: {2}]", self.name, self.effectID, self.runTime)
69 self.__generateHandler()
70
71 return self.__handler
72
73 @property
74 def runTime(self):

Callers

nothing calls this directly

Calls 1

__generateHandlerMethod · 0.95

Tested by

no test coverage detected