summaryrefslogtreecommitdiff
path: root/alot/buffers.py
diff options
context:
space:
mode:
Diffstat (limited to 'alot/buffers.py')
-rw-r--r--alot/buffers.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/alot/buffers.py b/alot/buffers.py
index 430d53cd..9a2672b2 100644
--- a/alot/buffers.py
+++ b/alot/buffers.py
@@ -362,12 +362,12 @@ class ThreadBuffer(Buffer):
bars_att = settings.get_theming_attribute('thread', 'arrow_bars')
heads_att = settings.get_theming_attribute('thread', 'arrow_heads')
- A = ArrowTree(self._tree,
- indent=2,
- childbar_offset=0,
- arrow_tip_att=heads_att,
- arrow_att=bars_att,
- )
+ A = ArrowTree(
+ self._tree,
+ indent=2,
+ childbar_offset=0,
+ arrow_tip_att=heads_att,
+ arrow_att=bars_att)
self._nested_tree = NestedTree(A, interpret_covered=True)
self.body = TreeBox(self._nested_tree)
self.message_count = self.thread.get_total_messages()