From 53b8ca3940effa47fd793a54f6b14419e6a8f960 Mon Sep 17 00:00:00 2001 From: Will Wykeham Date: Tue, 13 Oct 2015 15:59:06 +0100 Subject: [PATCH] Fix some indentation inconsistency --- gui/projectedView.py | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/gui/projectedView.py b/gui/projectedView.py index c36d34de1..0d7192120 100644 --- a/gui/projectedView.py +++ b/gui/projectedView.py @@ -27,18 +27,18 @@ from gui.contextMenu import ContextMenu import eos.types class ProjectedViewDrop(wx.PyDropTarget): - def __init__(self, dropFn): - wx.PyDropTarget.__init__(self) - self.dropFn = dropFn - # this is really transferring an EVE itemID - self.dropData = wx.PyTextDataObject() - self.SetDataObject(self.dropData) + def __init__(self, dropFn): + wx.PyDropTarget.__init__(self) + self.dropFn = dropFn + # this is really transferring an EVE itemID + self.dropData = wx.PyTextDataObject() + self.SetDataObject(self.dropData) - def OnData(self, x, y, t): - if self.GetData(): - data = self.dropData.GetText().split(':') - self.dropFn(x, y, data) - return t + def OnData(self, x, y, t): + if self.GetData(): + data = self.dropData.GetText().split(':') + self.dropFn(x, y, data) + return t class ProjectedView(d.Display): DEFAULT_COLS = ["State",