modules: update code to python3 (#10904)

* modules: update code to python3

* pamd: rollback changes

* add changelog frag

* fix/improve assignments using generators

* Update plugins/modules/launchd.py

Co-authored-by: Felix Fontein <felix@fontein.de>

---------

Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
Alexei Znamensky
2025-10-14 08:42:48 +13:00
committed by GitHub
parent c5253c5007
commit 3b83df3f79
29 changed files with 113 additions and 86 deletions

View File

@@ -174,7 +174,7 @@ def get_sshkey_selector(module):
def act_on_sshkeys(target_state, module, packet_conn):
selector = get_sshkey_selector(module)
existing_sshkeys = packet_conn.list_ssh_keys()
matching_sshkeys = filter(selector, existing_sshkeys)
matching_sshkeys = list(filter(selector, existing_sshkeys))
changed = False
if target_state == 'present':
if matching_sshkeys == []: