From 8130d98bcc03334e0ec057ce13dddcf2eb536181 Mon Sep 17 00:00:00 2001 From: danielshih Date: Fri, 17 Oct 2025 00:24:28 +0800 Subject: [PATCH] The function parameters lack type hints. Consider adding type annotations for better code clarity and IDE support. --- src/specify_cli/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/specify_cli/__init__.py b/src/specify_cli/__init__.py index 757e531b..37cba286 100644 --- a/src/specify_cli/__init__.py +++ b/src/specify_cli/__init__.py @@ -485,7 +485,7 @@ def init_git_repo(project_path: Path, quiet: bool = False) -> Tuple[bool, Option finally: os.chdir(original_cwd) -def handle_vscode_settings(sub_item, dest_file, rel_path, verbose=False, tracker=None): +def handle_vscode_settings(sub_item, dest_file, rel_path, verbose=False, tracker=None) -> None: """Handle merging or copying of .vscode/settings.json files.""" def log(message, color="green"): if verbose and not tracker: