Keep the list of nullable colors up to date automatically

This commit is contained in:
Kovid Goyal
2021-10-28 15:21:42 +05:30
parent 4839cbe9d0
commit 1251f9ec80
2 changed files with 25 additions and 2 deletions

View File

@@ -18,8 +18,15 @@ if TYPE_CHECKING:
nullable_colors = (
'cursor', 'cursor_text_color', 'tab_bar_background', 'tab_bar_margin_color',
'selection_foreground', 'selection_background', 'active_border_color'
# NULLABLE_COLORS_START
'active_border_color',
'cursor',
'cursor_text_color',
'selection_background',
'selection_foreground',
'tab_bar_background',
'tab_bar_margin_color',
# NULLABLE_COLORS_END
)