Skip to content

Commit 081626b

Browse files
committed
Sanity check fixes
1 parent fe56a00 commit 081626b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugins/module_utils/network/vyos/config/l3_interfaces/l3_interfaces.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ def _state_deleted(self, want, have):
286286
want_vif = {"vlan_id": have_vif["vlan_id"]}
287287

288288
for update in self._get_updates(have_vif, want_vif):
289-
for key, value in iteritems(update):
289+
for key, value in update.items():
290290
commands.append(
291291
self._compute_commands(
292292
key=key,
@@ -298,7 +298,7 @@ def _state_deleted(self, want, have):
298298
)
299299

300300
for update in self._get_updates(have_copy, want_copy):
301-
for key, value in iteritems(update):
301+
for key, value in update.items():
302302
commands.append(
303303
self._compute_commands(
304304
key=key,

0 commit comments

Comments
 (0)