mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-03-22 05:09:12 +00:00
Add typing to plugins/modules/uv_python.py
Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
ec3be22b23
commit
ae57b2b809
1 changed files with 1 additions and 1 deletions
|
|
@ -128,7 +128,7 @@ class UV:
|
|||
)
|
||||
)
|
||||
|
||||
def _ensure_min_uv_version(self):
|
||||
def _ensure_min_uv_version(self) -> None:
|
||||
cmd = [self.bin_path, "--version", "--color", "never"]
|
||||
dummy_rc, out, dummy_err = self.module.run_command(cmd, check_rc=True)
|
||||
detected = out.strip().split()[-1]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue