Closed
Description
Description
On line 445 in salt/modules/nftables.py we find:
# Not a typo. Invert the dictionary twice to get unique values only.
nft_families = {v: k for k, v in _NFTABLES_FAMILIES.items()}
nft_families = {v: k for k, v in _NFTABLES_FAMILIES.items()}
How do these two identical lines make sense?