You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for the feedback, I think this can be fix quickly by adding super().__init__ indeed.
But I'm not sure why Parallel inherits from Logger here, since the methods it adds are not used by Parallel like it is in memory.py, was there really an intent to expose the logging methods as public methods to the users ? @GaelVaroquaux maybe you have more insight to provide on the initial intent ? I had a discussion with @tomMoral that suggests exposing the Logger methods in Parallel could be deprecated.
Hi,
Since v1.3.1, calling
Parallel.warn
produces this errorI think
Parallel.__init__
is missing asuper().__init__
call to let the Logger class set the_name
attribute.The text was updated successfully, but these errors were encountered: