diff --git a/eos/db/saveddata/databaseRepair.py b/eos/db/saveddata/databaseRepair.py index cbdc0b245..994583ce5 100644 --- a/eos/db/saveddata/databaseRepair.py +++ b/eos/db/saveddata/databaseRepair.py @@ -17,7 +17,6 @@ # along with pyfa. If not, see . # =============================================================================== -import sqlalchemy from sqlalchemy.exc import DatabaseError import logging diff --git a/eos/eqBase.py b/eos/eqBase.py index 85a9d1b31..73462c5ae 100644 --- a/eos/eqBase.py +++ b/eos/eqBase.py @@ -19,7 +19,7 @@ class EqBase(object): - ID = None + ID = None def __eq__(self, other): return type(self) == type(other) and self.ID == other.ID diff --git a/eos/gamedata.py b/eos/gamedata.py index 8e0c1806c..915ed59ac 100644 --- a/eos/gamedata.py +++ b/eos/gamedata.py @@ -213,7 +213,7 @@ class Item(EqBase): category = None ID = None __attributes = None - + MOVE_ATTRS = (4, # Mass 38, # Capacity 161) # Volume diff --git a/gui/display.py b/gui/display.py index dcc3f7343..3e8c9b247 100644 --- a/gui/display.py +++ b/gui/display.py @@ -26,7 +26,7 @@ from gui.cachingImageList import CachingImageList class Display(wx.ListCtrl): - DEFAULT_COLS = None + DEFAULT_COLS = None def __init__(self, parent, size=wx.DefaultSize, style=0): diff --git a/gui/mainFrame.py b/gui/mainFrame.py index 85f04c741..feb9df659 100644 --- a/gui/mainFrame.py +++ b/gui/mainFrame.py @@ -90,7 +90,7 @@ if 'wxMac' not in wx.PlatformInfo or ('wxMac' in wx.PlatformInfo and wx.VERSION disableOverrideEditor = False except ImportError as e: - AttributeEditor = None + AttributeEditor = None print("Error loading Attribute Editor: %s.\nAccess to Attribute Editor is disabled." % e.message) disableOverrideEditor = True diff --git a/service/eveapi.py b/service/eveapi.py index 581819c27..11a837994 100644 --- a/service/eveapi.py +++ b/service/eveapi.py @@ -699,7 +699,7 @@ class _Parser(object): class Element(object): - _name = None + _name = None # Element is a namespace for attributes and nested tags def __str__(self):