diff options
| author | Ahmed Abdelhalim <[email protected]> | 2025-09-20 20:55:03 +0200 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2025-09-20 20:55:03 +0200 |
| commit | 19a7d7053b721a22b805ba7a9daff1cb7a70a630 (patch) | |
| tree | e5f394ec8e01d66f3aa7e944d356a4bbb1509711 /roles/python | |
| parent | 534e7486f3db1f56e9a4f54572c8724c2aca88f4 (diff) | |
Migrate to the new loop syntax
Diffstat (limited to 'roles/python')
| -rw-r--r-- | roles/python/tasks/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/python/tasks/main.yml b/roles/python/tasks/main.yml index e8904d2d..b469c9d2 100644 --- a/roles/python/tasks/main.yml +++ b/roles/python/tasks/main.yml @@ -26,5 +26,5 @@ creates: "{{ ansible_env.HOME }}/.local/share/uv/python/cpython-{{ item }}*/bin/python{{ item }}" environment: PATH: "/home/linuxbrew/.linuxbrew/bin:{{ ansible_env.PATH }}" - with_items: "{{ python_versions }}" + loop: "{{ python_versions }}" when: python_versions | length > 0 |
