From 532c92d760ac537e186aa8936c3d56f61a9dde0d Mon Sep 17 00:00:00 2001 From: Mariam Ahhttouche Date: Wed, 11 Mar 2026 14:12:24 +0000 Subject: [PATCH] Add typing in plugins/modules/uv_python.py Co-authored-by: Felix Fontein --- plugins/modules/uv_python.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/modules/uv_python.py b/plugins/modules/uv_python.py index b79f23c3a9..980856e917 100644 --- a/plugins/modules/uv_python.py +++ b/plugins/modules/uv_python.py @@ -139,7 +139,7 @@ class UV: required_version=MINIMUM_UV_VERSION, ) - def install_python(self) -> tuple[bool, str, str, int, list, list]: + def install_python(self) -> tuple[bool, str, str, int, list[str], list[str]]: """ Runs command 'uv python install X.Y.Z' which installs specified python version. If patch version is not specified uv installs latest available patch version.