diff --git a/_development/Pyfa_CodeStyle.xml b/_development/Pyfa_CodeStyle.xml
index a7980e4df3..121e2b455a 100644
--- a/_development/Pyfa_CodeStyle.xml
+++ b/_development/Pyfa_CodeStyle.xml
@@ -3,7 +3,6 @@
-
diff --git a/_development/Pyfa_Inspections.xml b/_development/Pyfa_Inspections.xml
index 0a0da06d47..c724a83fc0 100644
--- a/_development/Pyfa_Inspections.xml
+++ b/_development/Pyfa_Inspections.xml
@@ -1,54 +1,61 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/gui/builtinStatsViews/resistancesViewFull.py b/gui/builtinStatsViews/resistancesViewFull.py
index 4142bda657..e43a655e8c 100644
--- a/gui/builtinStatsViews/resistancesViewFull.py
+++ b/gui/builtinStatsViews/resistancesViewFull.py
@@ -80,9 +80,9 @@ def populatePanel(self, contentPanel, headerPanel):
sizerResistances.Add(wx.StaticText(contentPanel, wx.ID_ANY), wx.GBPosition(row, col), wx.GBSpan(1, 1))
col += 1
toolTipText = {
- "em" : _("Electromagnetic resistance"),
- "thermal" : _("Thermal resistance"),
- "kinetic" : _("Kinetic resistance"),
+ "em": _("Electromagnetic resistance"),
+ "thermal": _("Thermal resistance"),
+ "kinetic": _("Kinetic resistance"),
"explosive": _("Explosive resistance")
}
for damageType in ("em", "thermal", "kinetic", "explosive"):
@@ -107,9 +107,9 @@ def populatePanel(self, contentPanel, headerPanel):
((198, 133, 38), (81, 83, 67)))
toolTipText = {
- "shield" : _("Shield resistance"),
- "armor" : _("Armor resistance"),
- "hull" : _("Hull resistance"),
+ "shield": _("Shield resistance"),
+ "armor": _("Armor resistance"),
+ "hull": _("Hull resistance"),
"damagePattern": _("Incoming damage pattern")
}
for tankType in ("shield", "armor", "hull", "separator", "damagePattern"):
diff --git a/gui/builtinStatsViews/resourcesViewFull.py b/gui/builtinStatsViews/resourcesViewFull.py
index c9308f7d18..ec6d042e00 100644
--- a/gui/builtinStatsViews/resourcesViewFull.py
+++ b/gui/builtinStatsViews/resourcesViewFull.py
@@ -106,10 +106,10 @@ def populatePanel(self, contentPanel, headerPanel):
sizer.AddStretchSpacer()
# Turrets & launcher hardslots display
tooltipText = {
- "turret" : _("Turret hardpoints"),
- "launcher" : _("Launcher hardpoints"),
- "drones" : _("Drones active"),
- "fighter" : _("Fighter squadrons active"),
+ "turret": _("Turret hardpoints"),
+ "launcher": _("Launcher hardpoints"),
+ "drones": _("Drones active"),
+ "fighter": _("Fighter squadrons active"),
"calibration": _("Calibration")
}
for type_ in ("turret", "launcher", "drones", "fighter", "calibration"):
@@ -124,7 +124,7 @@ def populatePanel(self, contentPanel, headerPanel):
sizer.Add(box, 0, wx.ALIGN_CENTER)
suffix = {
- 'turret' : 'Hardpoints', 'launcher': 'Hardpoints', 'drones': 'Active', 'fighter': 'Tubes',
+ 'turret': 'Hardpoints', 'launcher': 'Hardpoints', 'drones': 'Active', 'fighter': 'Tubes',
'calibration': 'Points'
}
lbl = wx.StaticText(parent, wx.ID_ANY, "0")
@@ -148,12 +148,12 @@ def populatePanel(self, contentPanel, headerPanel):
# PG, Cpu & drone stuff
tooltipText = {
- "cpu" : _("CPU"),
- "pg" : _("PowerGrid"),
- "droneBay" : _("Drone bay"),
- "fighterBay" : _("Fighter bay"),
+ "cpu": _("CPU"),
+ "pg": _("PowerGrid"),
+ "droneBay": _("Drone bay"),
+ "fighterBay": _("Fighter bay"),
"droneBandwidth": _("Drone bandwidth"),
- "cargoBay" : _("Cargo bay")
+ "cargoBay": _("Cargo bay")
}
for i, group in enumerate((("cpu", "pg"), ("cargoBay", "droneBay", "fighterBay", "droneBandwidth"))):
main = wx.BoxSizer(wx.VERTICAL)