Rewrite TUI #52

Merged
merenber merged 7 commits from tui-urwid into master 2022-05-22 14:09:48 -04:00
1 changed files with 4 additions and 1 deletions
Showing only changes of commit 0dd53b0821 - Show all commits

View File

@ -15,7 +15,10 @@ class ColumnResponseView(ColumnView):
pairs[i] = (left, str(right))
rows = [
(
urwid.Text(left + ':', align='right'),
urwid.Text(
left + ':' if left != '' else '',
align='right'
),
urwid.Text(right)
)
for left, right in pairs