From f470a0bbd09423143822fe3bbe5461f730100209 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 22 Jul 2025 00:34:28 +0000 Subject: [PATCH] Cleanup: quiet mypy warning --- build_files/utils/make_source_archive.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_files/utils/make_source_archive.py b/build_files/utils/make_source_archive.py index 78f42a044a3..895742100ac 100755 --- a/build_files/utils/make_source_archive.py +++ b/build_files/utils/make_source_archive.py @@ -294,7 +294,7 @@ def git_ls_files(directory: Path = Path(".")) -> Iterable[Path]: yield path -def git_command(cli_args: str, split_char="\n") -> Iterable[str]: +def git_command(cli_args: str, split_char: str = "\n") -> Iterable[str]: """Generator, yields lines of output from a Git command.""" command = "git " + cli_args