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

Method __init__

gui/builtinAdditionPanes/boosterView.py:35–40  ·  view source on GitHub ↗
(self, dropFn, *args, **kwargs)

Source from the content-addressed store, hash-verified

33
34class BoosterViewDrop(wx.DropTarget):
35 def __init__(self, dropFn, *args, **kwargs):
36 super(BoosterViewDrop, self).__init__(*args, **kwargs)
37 self.dropFn = dropFn
38 # this is really transferring an EVE itemID
39 self.dropData = wx.TextDataObject()
40 self.SetDataObject(self.dropData)
41
42 def OnData(self, x, y, t):
43 if self.GetData():

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected