mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-03-22 05:09:12 +00:00
Add typing in plugins/modules/uv_python.py
Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
281b072aed
commit
532c92d760
1 changed files with 1 additions and 1 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue