summaryrefslogtreecommitdiff
path: root/alot/widgets/namedqueries.py
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2019-08-11 11:18:58 +0100
committerPatrick Totzke <patricktotzke@gmail.com>2019-08-11 11:39:21 +0100
commit9b43a27894a029f7be31f44e27e03683c5857dd2 (patch)
treecab0b1f2564e09dfc3f94e39b2d1cc79c995f2d9 /alot/widgets/namedqueries.py
parent6df1ac86b761d04464ecc611a3463968f608af2d (diff)
pep8 fixes in alot/widgets
Diffstat (limited to 'alot/widgets/namedqueries.py')
-rw-r--r--alot/widgets/namedqueries.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/alot/widgets/namedqueries.py b/alot/widgets/namedqueries.py
index 9791d5a3..6531efbe 100644
--- a/alot/widgets/namedqueries.py
+++ b/alot/widgets/namedqueries.py
@@ -12,8 +12,8 @@ class QuerylineWidget(urwid.Columns):
def __init__(self, key, value, count, count_unread):
self.query = key
- count_widget = urwid.Text('{0:>7} {1:7}'.\
- format(count, '({0})'.format(count_unread)))
+ count_widget = urwid.Text('{0:>7} {1:7}'.
+ format(count, '({0})'.format(count_unread)))
key_widget = urwid.Text(key)
value_widget = urwid.Text(value)