Skip to content

Commit 7418b49

Browse files
committed
fix(tools): remove recursive type
1 parent fab7703 commit 7418b49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/schwab_mcp/tools/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66

77
JSONPrimitive = str | int | float | bool | None
8-
JSONType: TypeAlias = JSONPrimitive | dict[str, "JSONType"] | list["JSONType"]
8+
JSONType: TypeAlias = JSONPrimitive | dict[str, Any] | list[Any]
99

1010

1111
async def call(func: Callable[..., Awaitable[Any]], *args: Any, **kwargs: Any) -> JSONType:

0 commit comments

Comments
 (0)