From a8488b2198739ce61b62329e6b0bcbf189188a72 Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Mon, 18 Nov 2024 09:40:03 +0000 Subject: [PATCH] Fix docstring --- src/backend/InvenTree/plugin/installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/InvenTree/plugin/installer.py b/src/backend/InvenTree/plugin/installer.py index 6d652f7360..e462665a4c 100644 --- a/src/backend/InvenTree/plugin/installer.py +++ b/src/backend/InvenTree/plugin/installer.py @@ -66,7 +66,7 @@ def handle_pip_error(error, path: str) -> list: raise ValidationError(errors[0]) -def get_install_info(packagename: str) -> str: +def get_install_info(packagename: str) -> dict: """Determine the install information for a particular package. - Uses 'pip show' to determine the install location of a package.