From 9bf6870c5ca4ba67de4f4467d039ab243a1acfb6 Mon Sep 17 00:00:00 2001 From: Master3See Date: Thu, 1 Aug 2013 14:43:08 -0600 Subject: [PATCH] Removed unnecessary white space. --- gui/boosterView.py | 2 +- gui/builtinViews/fittingView.py | 2 +- gui/characterEditor.py | 4 ++-- gui/droneView.py | 2 +- gui/implantView.py | 2 +- gui/shipBrowser.py | 2 +- gui/statsPane.py | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/gui/boosterView.py b/gui/boosterView.py index 19547f06d..410247bbe 100644 --- a/gui/boosterView.py +++ b/gui/boosterView.py @@ -134,5 +134,5 @@ class BoosterView(d.Display): srcContext = "boosterItem" itemContext = "Booster" - menu = ContextMenu.getMenu( (item,), (srcContext, itemContext)) + menu = ContextMenu.getMenu((item,), (srcContext, itemContext)) self.PopupMenu(menu) diff --git a/gui/builtinViews/fittingView.py b/gui/builtinViews/fittingView.py index eb298a854..f079adbfa 100644 --- a/gui/builtinViews/fittingView.py +++ b/gui/builtinViews/fittingView.py @@ -417,7 +417,7 @@ class FittingView(d.Display): contexts.append(("fittingShip", "Ship")) - menu = ContextMenu.getMenu( selection, *contexts) + menu = ContextMenu.getMenu(selection, *contexts) self.PopupMenu(menu) def click(self, event): diff --git a/gui/characterEditor.py b/gui/characterEditor.py index 183a4c350..d0102a24a 100644 --- a/gui/characterEditor.py +++ b/gui/characterEditor.py @@ -304,8 +304,8 @@ class SkillTreeView (wx.Panel): srcContext = "skillItem" itemContext = "Skill" context = (srcContext, itemContext) - self.statsMenu = ContextMenu.getMenu( None, context) - self.levelChangeMenu = ContextMenu.getMenu( None, context) or wx.Menu() + self.statsMenu = ContextMenu.getMenu(None, context) + self.levelChangeMenu = ContextMenu.getMenu(None, context) or wx.Menu() self.levelChangeMenu.AppendSeparator() self.levelIds = {} diff --git a/gui/droneView.py b/gui/droneView.py index a6cb81d6a..21a54ec49 100644 --- a/gui/droneView.py +++ b/gui/droneView.py @@ -228,5 +228,5 @@ class DroneView(d.Display): sMkt = service.Market.getInstance() sourceContext = "droneItem" itemContext = sMkt.getCategoryByItem(drone.item).name - menu = ContextMenu.getMenu( (drone,), (sourceContext, itemContext)) + menu = ContextMenu.getMenu((drone,), (sourceContext, itemContext)) self.PopupMenu(menu) diff --git a/gui/implantView.py b/gui/implantView.py index 3d8b24079..663375cd3 100644 --- a/gui/implantView.py +++ b/gui/implantView.py @@ -132,5 +132,5 @@ class ImplantView(d.Display): sourceContext = "implantItem" itemContext = sMkt.getCategoryByItem(implant.item).name - menu = ContextMenu.getMenu( (implant,), (sourceContext, itemContext)) + menu = ContextMenu.getMenu((implant,), (sourceContext, itemContext)) self.PopupMenu(menu) diff --git a/gui/shipBrowser.py b/gui/shipBrowser.py index 2afb5d4de..94763d5c6 100644 --- a/gui/shipBrowser.py +++ b/gui/shipBrowser.py @@ -1085,7 +1085,7 @@ class ShipItem(SFItem.SFBrowserItem): pos = self.ScreenToClient(pos) contexts = [] contexts.append(("baseShip", "Ship Basic")) - menu = ContextMenu.getMenu( self.baseItem, *contexts) + menu = ContextMenu.getMenu(self.baseItem, *contexts) self.PopupMenu(menu, pos) def OnTimer(self, event): diff --git a/gui/statsPane.py b/gui/statsPane.py index 8f165be9d..37331e875 100644 --- a/gui/statsPane.py +++ b/gui/statsPane.py @@ -92,7 +92,7 @@ class StatsPane(wx.Panel): def contextHandler(self, contentPanel): viewName = contentPanel.viewName def handler(event): - menu = ContextMenu.getMenu( None, (viewName,)) + menu = ContextMenu.getMenu(None, (viewName,)) if menu is not None: contentPanel.PopupMenu(menu)