-
Notifications
You must be signed in to change notification settings - Fork 297
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replaced OrderedDict with dict #1132
Conversation
Removing I would see three ways forward:
@n2ygk Any thoughts? |
@sliverc I think it will be pretty safe to replace |
Sounds good. I made the PR ready then for merging. I went through all changes again, but please have a close look whether everything looks good to you. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. Nice cleanup, tightening up the loops while eliminating OrderedDict
.
Per our conversation doing a force merge to get around failed codecov target. |
Fixes #1094
Description of the Change
As Python 3.7+ now ensures that dicts are ordered, there is no need to use
OrderedDict
anymore.See in-depth explanation at #1094 (comment)
Using regular dicts also make the code more readable and easier debuggable.
Checklist
CHANGELOG.md
updated (only for user relevant changes)AUTHORS