Skip to content

Commit

Permalink
Fixes issus python#13382
Browse files Browse the repository at this point in the history
  • Loading branch information
InFiNiTy0639 committed Jan 10, 2025
1 parent f26ad20 commit c861b6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdlib/logging/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c861b6f

Please sign in to comment.