-
Notifications
You must be signed in to change notification settings - Fork 6.3k
[Modular] Consolidate load_default_components
into load_components
#12217
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
Conversation
] | ||
self.load_components(names=names, **kwargs) | ||
# Consolidated into load_components - just call it without names parameter | ||
logger.warning("`load_default_components` is deprecated. Please use `load_components()` instead") |
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.
@yiyixuxu Up to you whether we just remove the method all together or deprecate. Fine with either.
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.
we can just remove!
The docs for this PR live here. All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update. |
] | ||
self.load_components(names=names, **kwargs) | ||
# Consolidated into load_components - just call it without names parameter | ||
logger.warning("`load_default_components` is deprecated. Please use `load_components()` instead") |
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.
we can just remove!
@bot /style |
Style bot fixed some files and pushed the changes. |
What does this PR do?
load_default_components
is a thin wrapper aroundload_components
and just deals with the case whenname=None
. IMO better to just consolidate it intoload_components
Fixes # (issue)
Before submitting
documentation guidelines, and
here are tips on formatting docstrings.
Who can review?
Anyone in the community is free to review the PR once the tests have passed. Feel free to tag
members/contributors who may be interested in your PR.