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
class SLF4JHandler(logging.Handler):
def __init__(self, logger=None):
logging.Handler.__init__(self)
Technically, shouldn't this be super(SLF4JHandler, self).__init__() ? I am not an expert on the Python class mechanisms so I'm not sure about the subtleties of the difference.
The text was updated successfully, but these errors were encountered:
Technically, shouldn't this be
super(SLF4JHandler, self).__init__()
? I am not an expert on the Python class mechanisms so I'm not sure about the subtleties of the difference.The text was updated successfully, but these errors were encountered: