From 5917bc41f67f6ce388f2f67a8ed785aba861412a Mon Sep 17 00:00:00 2001 From: mushitoriami Date: Thu, 18 Jun 2026 14:38:48 +0900 Subject: [PATCH] docs: Fix broken reference of parameter type in `library/logging.rst` --- Doc/library/logging.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst index aba530844d7177a..a3d117c10702414 100644 --- a/Doc/library/logging.rst +++ b/Doc/library/logging.rst @@ -690,7 +690,7 @@ Formatter Objects :param defaults: A dictionary with default values to use in custom fields. For example, ``logging.Formatter('%(ip)s %(message)s', defaults={"ip": None})`` - :type defaults: dict[str, Any] + :type defaults: dict[str, typing.Any] .. versionchanged:: 3.2 Added the *style* parameter.