-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Use **kwargs
instead of OrderedDict
for _Activator.get_export_unset_vars
#11649
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
Use **kwargs
instead of OrderedDict
for _Activator.get_export_unset_vars
#11649
Conversation
99806af
to
c3f5324
Compare
c3f5324
to
544df87
Compare
5935af4
to
3791f69
Compare
3791f69
to
228454d
Compare
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.
I think this pull request is good as-is, but there are a couple things I commented on that I would like you to consider (namely, the line that isn't being covered by our tests at the moment). I'd also like to thank you for removing some very confusing import statements! Death to OrderDict! 🤣
60f79b8
to
6e71f73
Compare
b1145fd
to
374e79b
Compare
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.
Just needs a news item, even if it's an internal refactoring, people may be relying on internal state being stored as an OrderedDict somewhere out there.
Description
Since conda has dropped Python 3.6 support, we can finally switch to using
**kwargs
instead of usingOrderedDict
.Checklist - did you ...
news
directory (using the template) for the next release's release notes?Add / update outdated documentation?