From 17cbfd4fc4cbf1efb81c18f3f24143f7c0acfa7c Mon Sep 17 00:00:00 2001 From: omnom62 <75066712+omnom62@users.noreply.github.com> Date: Sun, 19 Oct 2025 21:07:22 +1000 Subject: Fixes for sanity checks broken by upstream (#435) * init for upstream sanity checks * PY3 removed * procenv.py PY3 fix * changelog * Bulk commit of linter changes * Clean-up --- plugins/modules/vyos_user.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'plugins/modules') diff --git a/plugins/modules/vyos_user.py b/plugins/modules/vyos_user.py index 4a68e559..7aaa45ae 100644 --- a/plugins/modules/vyos_user.py +++ b/plugins/modules/vyos_user.py @@ -210,7 +210,6 @@ from copy import deepcopy from functools import partial from ansible.module_utils.basic import AnsibleModule -from ansible.module_utils.six import iteritems from ansible_collections.ansible.netcommon.plugins.module_utils.network.common.utils import ( remove_default_spec, ) @@ -424,7 +423,7 @@ def update_objects(want, have): if item is None: updates.append((entry, {})) elif item: - for key, value in iteritems(entry): + for key, value in entry.items(): if value and value != item[key]: updates.append((entry, item)) return updates -- cgit v1.2.3