mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-17 14:04:52 +02:00
pep8
This commit is contained in:
@@ -289,9 +289,9 @@ class PrintHelpForSeq:
|
||||
leading_indent = indent
|
||||
j = '\n' + (' ' * indent)
|
||||
lines: List[str] = []
|
||||
for l in text.splitlines():
|
||||
if l:
|
||||
lines.extend(wrap(l, limit=linesz - indent))
|
||||
for ln in text.splitlines():
|
||||
if ln:
|
||||
lines.extend(wrap(ln, limit=linesz - indent))
|
||||
else:
|
||||
lines.append('')
|
||||
a((' ' * leading_indent) + j.join(lines))
|
||||
|
||||
Reference in New Issue
Block a user