Mark another nullable color

This commit is contained in:
Kovid Goyal 2021-10-28 14:38:09 +05:30
parent c06a03ab96
commit 0c1a7347db
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -17,7 +17,7 @@ if TYPE_CHECKING:
from kitty.cli_stub import SetColorsRCOptions as CLIOptions
nullable_colors = ('cursor', 'cursor_text_color', 'tab_bar_background', 'tab_bar_margin_color', 'selection_foreground')
nullable_colors = ('cursor', 'cursor_text_color', 'tab_bar_background', 'tab_bar_margin_color', 'selection_foreground', 'active_border_color')
def parse_colors(args: Iterable[str]) -> Dict[str, Optional[int]]: