Skip to content

Commit

Permalink
iteritems -> items
Browse files Browse the repository at this point in the history
Signed-off-by: Stepan Blyschak <[email protected]>
  • Loading branch information
stepanblyschak committed Mar 25, 2021
1 parent f2ee39f commit c724569
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sonic_package_manager/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def deep_update(dst: Dict, src: Dict) -> Dict:
New merged dictionary.
"""

for key, value in src.iteritems():
for key, value in src.items():
if isinstance(value, dict):
node = dst.setdefault(key, {})
deep_update(node, value)
Expand Down

0 comments on commit c724569

Please sign in to comment.