Skip to content

Commit

Permalink
Merge pull request #33 from ondrg/patch-1
Browse files Browse the repository at this point in the history
Fix httpx._types.VerifyTypes type hint
  • Loading branch information
mardiros authored Dec 6, 2024
2 parents a04221b + dfb0c00 commit ee75653
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/aioxmlrpc/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,13 @@

import asyncio
import logging
import ssl
from typing import (
Any,
Awaitable,
Callable,
Optional,
Union,
cast,
)
from xmlrpc import client as xmlrpc
Expand Down Expand Up @@ -153,7 +155,7 @@ def __init__(
auth: Optional[httpx._types.AuthTypes] = None,
*,
headers: Optional[dict[str, Any]] = None,
context: Optional[httpx._types.VerifyTypes] = None,
context: Optional[Union[bool, ssl.SSLContext]] = None,
timeout: httpx._types.TimeoutTypes = 5.0,
session: Optional[httpx.AsyncClient] = None,
) -> None:
Expand Down

0 comments on commit ee75653

Please sign in to comment.