From c89e72fb54536e32d85402ded4061c18ed891516 Mon Sep 17 00:00:00 2001 From: Kevin Heavey Date: Mon, 4 Jul 2022 22:59:13 +0100 Subject: [PATCH] fix type --- python/solders/rpc/requests.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/solders/rpc/requests.pyi b/python/solders/rpc/requests.pyi index 5ccc4909..f5825265 100644 --- a/python/solders/rpc/requests.pyi +++ b/python/solders/rpc/requests.pyi @@ -1506,4 +1506,4 @@ Body = Union[ ] def batch_to_json(reqs: Sequence[Body]) -> str: ... -def batch_from_json(raw: str) -> List[__Body]: ... +def batch_from_json(raw: str) -> List[Body]: ...