From 5a1cae096a36878f488f05c3ab2f618f399f689d Mon Sep 17 00:00:00 2001 From: Peter Shen Date: Tue, 30 Aug 2022 11:52:25 +0800 Subject: [PATCH] Change to uppercase then reproduce #30 (#31) --- clang_tools/install.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clang_tools/install.py b/clang_tools/install.py index d9128ee..d527660 100644 --- a/clang_tools/install.py +++ b/clang_tools/install.py @@ -159,7 +159,7 @@ def uninstall_tool(tool_name: str, version: str, directory: str): :param tool_name: The name of the clang tool to uninstall. :param version: The version of the clang-tools to remove. - :param directory: the directory from which to remove the + :param directory: The directory from which to remove the installed clang-tools. """ tool_path = Path(directory, f"{tool_name}-{version}{suffix}") @@ -178,7 +178,7 @@ def uninstall_clang_tools(version: str, directory: str): """Uninstall a clang tool of a given version. :param version: The version of the clang-tools to remove. - :param directory: the directory from which to remove the + :param directory: The directory from which to remove the installed clang-tools. """ install_dir = install_dir_name(directory)