summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugins/modules/vyos_firewall_global.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/modules/vyos_firewall_global.py b/plugins/modules/vyos_firewall_global.py
index 6bd57a7..337f364 100644
--- a/plugins/modules/vyos_firewall_global.py
+++ b/plugins/modules/vyos_firewall_global.py
@@ -219,7 +219,7 @@ _GROUP_TYPES = {
# NOT tag nodes -- confirmed against vyos-1x (leafNode with <multi/>) --
# they're plain multi-value leaves, so dict_op's own native list handling
# applies to them directly; no reshaping needed.
-_TAG_KEYS = {device_key for device_key, _ in _GROUP_TYPES.values()}
+_TAG_KEYS = {device_key for device_key, _member_key in _GROUP_TYPES.values()}
def _group_to_device(g, member_key):