1
0
Fork 0
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:
Mariam Ahhttouche 2026-03-11 13:58:30 +00:00 committed by GitHub
parent ec3be22b23
commit ae57b2b809

View file

@ -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]