Skip to content

Commit b899696

Browse files
committed
PEP8
1 parent 1424a22 commit b899696

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

bpython/curtsiesfrontend/replpainter.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -157,13 +157,14 @@ def formatted_docstring(docstring, columns, config):
157157
for line in docstring.split('\n')), [])
158158

159159

160-
def paint_infobox(rows, columns, matches, funcprops, arg_pos, match, docstring, config,
161-
format):
160+
def paint_infobox(rows, columns, matches, funcprops, arg_pos, match, docstring,
161+
config, format):
162162
"""Returns painted completions, funcprops, match, docstring etc."""
163163
if not (rows and columns):
164164
return fsarray(0, 0)
165165
width = columns - 4
166-
lines = ((formatted_argspec(funcprops, arg_pos, width, config) if funcprops else []) +
166+
lines = ((formatted_argspec(funcprops, arg_pos, width, config)
167+
if funcprops else []) +
167168
(matches_lines(rows, width, matches, match, config, format)
168169
if matches else []) +
169170
(formatted_docstring(docstring, width, config)

0 commit comments

Comments
 (0)