| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -157,13 +157,14 @@ def formatted_docstring(docstring, columns, config): | |||
| 157 | 157 | for line in docstring.split('\n')), []) | |
| 158 | 158 | ||
| 159 | 159 | ||
| 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): | ||
| 162 | 162 | """Returns painted completions, funcprops, match, docstring etc.""" | |
| 163 | 163 | if not (rows and columns): | |
| 164 | 164 | return fsarray(0, 0) | |
| 165 | 165 | 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 []) + | ||
| 167 | 168 | (matches_lines(rows, width, matches, match, config, format) | |
| 168 | 169 | if matches else []) + | |
| 169 | 170 | (formatted_docstring(docstring, width, config) | |
| Back | FazBrowse Home | New Git URL |
0 commit comments