diff --git a/stdlib/logging/__init__.pyi b/stdlib/logging/__init__.pyi index 9a4827a8f626..cfd8ea8a031f 100644 --- a/stdlib/logging/__init__.pyi +++ b/stdlib/logging/__init__.pyi @@ -246,7 +246,7 @@ NOTSET: Final = 0 class Handler(Filterer): level: int # undocumented formatter: Formatter | None # undocumented - lock: threading.Lock | None # undocumented + lock: threading.RLock | None # Corrected type name: str | None # undocumented def __init__(self, level: _Level = 0) -> None: ... def get_name(self) -> str: ... # undocumented