Pylint fixes.

This commit is contained in:
Michael Lazar
2015-12-04 18:24:59 -08:00
parent 15c6daed2a
commit 83b5187317
2 changed files with 1 additions and 6 deletions

View File

@@ -50,7 +50,7 @@ class SubscriptionPage(Page):
self.active = False
def _draw_item(self, win, data, inverted=False):
def _draw_item(self, win, data, inverted):
n_rows, n_cols = win.getmaxyx()
n_cols -= 1 # Leave space for the cursor in the first column

View File

@@ -12,11 +12,6 @@ from rtv.content import (
Content, SubmissionContent, SubredditContent, SubscriptionContent)
from rtv import exceptions
try:
from unittest import mock
except ImportError:
import mock
def test_content_humanize_timestamp():