so many pep8 fixes
(cherry picked from commit bee125d)
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
#===============================================================================
|
||||
# =============================================================================
|
||||
# Copyright (C) 2010 Diego Duclos
|
||||
#
|
||||
# This file is part of pyfa.
|
||||
@@ -15,10 +15,11 @@
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with pyfa. If not, see <http://www.gnu.org/licenses/>.
|
||||
#===============================================================================
|
||||
# =============================================================================
|
||||
|
||||
import wx
|
||||
|
||||
|
||||
class ViewColumn(object):
|
||||
'''
|
||||
Abstract class that columns can inherit from.
|
||||
@@ -26,6 +27,7 @@ class ViewColumn(object):
|
||||
they can be used as columns in a view.
|
||||
'''
|
||||
columns = {}
|
||||
|
||||
def __init__(self, fittingView):
|
||||
self.fittingView = fittingView
|
||||
self.columnText = ""
|
||||
@@ -62,4 +64,5 @@ class ViewColumn(object):
|
||||
def delayedText(self, display, colItem):
|
||||
raise NotImplementedError()
|
||||
|
||||
from gui.builtinViewColumns import *
|
||||
|
||||
from gui.builtinViewColumns import * # noqa
|
||||
|
||||
Reference in New Issue
Block a user