From 86b89072f335683e8fe116d9d136e4a9f0ebc42f Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 13 Dec 2018 13:35:17 +0530 Subject: [PATCH] ... --- kitty/tab_bar.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/kitty/tab_bar.py b/kitty/tab_bar.py index 9f5690b1d..b0d5dcec9 100644 --- a/kitty/tab_bar.py +++ b/kitty/tab_bar.py @@ -16,7 +16,9 @@ from .window import calculate_gl_geometry from .rgb import alpha_blend, color_from_int TabBarData = namedtuple('TabBarData', 'title is_active needs_attention') -DrawData = namedtuple('DrawData', 'leading_spaces sep trailing_spaces bell_on_tab bell_fg alpha active_bg inactive_bg default_bg title_template') +DrawData = namedtuple( + 'DrawData', 'leading_spaces sep trailing_spaces bell_on_tab' + ' bell_fg alpha active_bg inactive_bg default_bg title_template') def as_rgb(x):