Skip to content

Commit e952c73

Browse files
committed
PEP8
1 parent 26b8daf commit e952c73

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

bpython/test/test_filewatch.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
from bpython.test import mock, unittest
1111

12+
1213
@unittest.skipUnless(has_watchdog, "watchdog required")
1314
class TestModuleChangeEventHandler(unittest.TestCase):
1415

bpython/test/test_repl.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,6 @@ def test_func_name_method_issue_479(self):
162162
self.assertTrue(self.repl.get_args())
163163
self.assertEqual(self.repl.current_func.__name__, expected_name)
164164

165-
166165
def test_syntax_error_parens(self):
167166
for line in ["spam(]", "spam([)", "spam())"]:
168167
self.set_input_line(line)
@@ -329,7 +328,8 @@ def test_fuzzy_global_complete(self):
329328
self.assertTrue(hasattr(self.repl.matches_iter, 'matches'))
330329
self.assertEqual(self.repl.matches_iter.matches,
331330
['UnboundLocalError(', '__doc__'] if not py3 else
332-
['ChildProcessError(', 'UnboundLocalError(', '__doc__'])
331+
['ChildProcessError(', 'UnboundLocalError(',
332+
'__doc__'])
333333

334334
# 2. Attribute tests
335335
def test_simple_attribute_complete(self):

0 commit comments

Comments
 (0)