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
Fix ComponentGraph appending target to final_component_features if there is a component that returns both X and y #2358
Conversation
Codecov Report
@@ Coverage Diff @@
## main #2358 +/- ##
=======================================
+ Coverage 99.7% 99.7% +0.1%
=======================================
Files 281 281
Lines 24925 24934 +9
=======================================
+ Hits 24828 24837 +9
Misses 97 97
Continue to review full report at Codecov.
|
|
||
parent_inputs = [ | ||
parent_input | ||
for parent_input in self.get_parents(self.compute_order[-1]) |
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 default to component name --> pass X so just checking that we're not checking a .y parent input :)
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.
lgtm
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.
LGTM!
Closes #2280