diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py index 29a7d464decf984..032340b78143856 100644 --- a/Lib/logging/__init__.py +++ b/Lib/logging/__init__.py @@ -2037,6 +2037,9 @@ class NullHandler(Handler): a NullHandler and add it to the top-level logger of the library module or package. """ + def __init__(self, *args, **kwargs): + """Stub.""" + def handle(self, record): """Stub."""