[MRG] Simplify super() calls#12812
Conversation
Now that Python 2 is removed from the CI we can call super without additional arguments.
|
|
Fair enough. I just had a small PR on the dummies a few month ago, where we discussed this change and decided to wait until Python 2 is removed from the CI. So I thought it might be time now. In #11991 super calls are identified as something that should be changed. I would also be happy to remove all them! |
|
Cool, then we can wait until #12639 is merged and then you can go ahead with the |
rth
left a comment
There was a problem hiding this comment.
Changing this in __init__ of estimators sounds reasonable, but I wonder if making the change in base classes (see below) is really equivalent in functionality.
This was probably causing the CI error
These were not responsible for the error and can hopefully be safely removed.
|
Issues with the test are resolved. From my side this would be ready to merge. |
jnothman
left a comment
There was a problem hiding this comment.
Reverting changes to externals is the only blocker for merge here. Otherwise LGTM
This reverts commit 129c28f.
This reverts commit 129c28f.
Now that Python 2 is removed from the CI we can call super without
additional arguments.