Closed manzt closed 1 year ago
What was changed in this pull request?
Replaces instances of dict.iteritems() with dict.items().
dict.iteritems()
dict.items()
Why is it necessary?
Use of iteritems() raises a deprecation notice in Python 3.10 and above.
iteritems()
Fixes #___
black .
Description
What was changed in this pull request?
Replaces instances of
dict.iteritems()
withdict.items()
.Why is it necessary?
Use of
iteritems()
raises a deprecation notice in Python 3.10 and above.Fixes #___
Checklist
black .