This commit is contained in:
Kovid Goyal 2018-12-13 13:35:17 +05:30
parent 022bee0560
commit 86b89072f3
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -16,7 +16,9 @@ from .window import calculate_gl_geometry
from .rgb import alpha_blend, color_from_int from .rgb import alpha_blend, color_from_int
TabBarData = namedtuple('TabBarData', 'title is_active needs_attention') 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): def as_rgb(x):