Skip to content

Commit 7594078

Browse files
committed
PEP-8
Signed-off-by: Sebastian Ramacher <sebastian+dev@ramacher.at>
1 parent 5b6e61e commit 7594078

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

bpython/test/test_autocomplete.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,10 @@ def func(apple, apricot, banana, carrot):
284284
argspec = list(inspect.getargspec(func))
285285

286286
argspec = ["func", argspec, False]
287-
com=autocomplete.ParameterNameCompletion()
288-
self.assertSetEqual(com.matches(1, "a", argspec=argspec), set(['apple=', 'apricot=']))
289-
self.assertSetEqual(com.matches(2, "ba", argspec=argspec), set(['banana=']))
290-
self.assertSetEqual(com.matches(3, "car", argspec=argspec), set(['carrot=']))
287+
com = autocomplete.ParameterNameCompletion()
288+
self.assertSetEqual(com.matches(1, "a", argspec=argspec),
289+
set(['apple=', 'apricot=']))
290+
self.assertSetEqual(com.matches(2, "ba", argspec=argspec),
291+
set(['banana=']))
292+
self.assertSetEqual(com.matches(3, "car", argspec=argspec),
293+
set(['carrot=']))

0 commit comments

Comments
 (0)