More pylint fixes, added pylint to the build process.

This commit is contained in:
Michael Lazar
2015-12-05 01:51:05 -08:00
parent 83b5187317
commit 8fd8dc549e
11 changed files with 422 additions and 38 deletions

View File

@@ -46,11 +46,10 @@ class Page(object):
self._content_window = None
self._subwindows = None
def refresh_content(self, order=None):
def refresh_content(self, order=None, name=None):
raise NotImplementedError
@staticmethod
def _draw_item(window, data, inverted):
def _draw_item(self, window, data, inverted):
raise NotImplementedError
def loop(self):