We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fab7703 commit 7418b49Copy full SHA for 7418b49
src/schwab_mcp/tools/utils.py
@@ -5,7 +5,7 @@
5
6
7
JSONPrimitive = str | int | float | bool | None
8
-JSONType: TypeAlias = JSONPrimitive | dict[str, "JSONType"] | list["JSONType"]
+JSONType: TypeAlias = JSONPrimitive | dict[str, Any] | list[Any]
9
10
11
async def call(func: Callable[..., Awaitable[Any]], *args: Any, **kwargs: Any) -> JSONType:
0 commit comments