Skip to content

Commit 3e5c562

Browse files
committed
fix
1 parent a1ac38d commit 3e5c562

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/apify_client/_types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from dataclasses import dataclass, field
55
from typing import Any, Generic, TypeVar
66

7-
JSONSerializable = str | int | float | bool | None | dict[str, Any] | list[Any]
7+
JsonSerializable = str | int | float | bool | None | dict[str, Any] | list[Any]
88
"""Type for representing json-serializable values. It's close enough to the real thing supported by json.parse.
99
It was suggested in a discussion with (and approved by) Guido van Rossum, so I'd consider it correct enough.
1010
"""

0 commit comments

Comments
 (0)