From dfd0d1c037aae1058fee652b724d86fb61a7fc72 Mon Sep 17 00:00:00 2001 From: Johnathan Fisher Date: Fri, 17 Dec 2021 14:11:16 -0500 Subject: [PATCH] Update type hint to align with docs and usage. --- gql/transport/requests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gql/transport/requests.py b/gql/transport/requests.py index 31b52809..32e57478 100644 --- a/gql/transport/requests.py +++ b/gql/transport/requests.py @@ -40,7 +40,7 @@ def __init__( auth: Optional[AuthBase] = None, use_json: bool = True, timeout: Optional[int] = None, - verify: bool = True, + verify: Union[bool, str] = True, retries: int = 0, method: str = "POST", **kwargs: Any,