From ad91f5af5389fc5bce611eb6f1857e198e4e5651 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 25 Feb 2022 14:21:04 +0530 Subject: [PATCH] ... --- kitty/conf/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/conf/utils.py b/kitty/conf/utils.py index 5a190f537..476955d71 100644 --- a/kitty/conf/utils.py +++ b/kitty/conf/utils.py @@ -238,7 +238,7 @@ def merge_dicts(defaults: Dict[str, Any], newvals: Dict[str, Any]) -> Dict[str, return ans -def resolve_config(SYSTEM_CONF: str, defconf: str, config_files_on_cmd_line: Sequence[str]) -> Generator[str, None, None]: +def resolve_config(SYSTEM_CONF: str, defconf: str, config_files_on_cmd_line: Sequence[str] = ()) -> Generator[str, None, None]: if config_files_on_cmd_line: if 'NONE' not in config_files_on_cmd_line: yield SYSTEM_CONF