Skip to content

Commit 93e6982

Browse files
authoredJan 24, 2025··
🐛 Fix: httpx query param type error (#186)
1 parent 689cc1e commit 93e6982

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎githubkit/typing.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
QueryParamTypes: TypeAlias = Union[
2929
httpx.QueryParams,
3030
Mapping[str, Union[PrimitiveData, Sequence[PrimitiveData]]],
31-
Sequence[tuple[str, PrimitiveData]],
31+
list[tuple[str, PrimitiveData]],
3232
tuple[tuple[str, PrimitiveData], ...],
3333
str,
3434
bytes,

0 commit comments

Comments
 (0)
Please sign in to comment.