Skip to content

Commit aae4e27

Browse files
committed
.
1 parent d27cb71 commit aae4e27

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

stdlib/json/decoder.pyi

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ class JSONDecoder:
1818
parse_constant: Callable[[str], Any]
1919
strict: bool
2020
object_pairs_hook: Callable[[list[tuple[str, Any]]], Any]
21-
parse_object: Callable
22-
parse_array: Callable
23-
parse_string: Callable
24-
memo: dict
21+
parse_object: Callable[..., Any]
22+
parse_array: Callable[..., Any]
23+
parse_string: Callable[..., Any]
24+
memo: dict[Any, Any]
2525
def __init__(
2626
self,
2727
*,

0 commit comments

Comments
 (0)