From 400a55a5a4a8352543526749c7d7605fea58c9f4 Mon Sep 17 00:00:00 2001 From: Ju4tCode <42488585+yanyongyu@users.noreply.github.com> Date: Fri, 24 Jan 2025 07:14:06 +0000 Subject: [PATCH] :bug: fix query type error --- githubkit/typing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/githubkit/typing.py b/githubkit/typing.py index ce5451f31..f9a9a0bcf 100644 --- a/githubkit/typing.py +++ b/githubkit/typing.py @@ -28,7 +28,7 @@ QueryParamTypes: TypeAlias = Union[ httpx.QueryParams, Mapping[str, Union[PrimitiveData, Sequence[PrimitiveData]]], - Sequence[tuple[str, PrimitiveData]], + list[tuple[str, PrimitiveData]], tuple[tuple[str, PrimitiveData], ...], str, bytes,