diff --git a/vona/globals/__init__.py b/vona/globals/__init__.py index f564772..dab5d3e 100644 --- a/vona/globals/__init__.py +++ b/vona/globals/__init__.py @@ -304,7 +304,6 @@ class http_client: headers: dict = {}, authorize: bool = True, json: dict = {}, - verify: bool = True, ): resolved = self._resolve(destination) @@ -323,7 +322,6 @@ class http_client: headers=headers, extensions={"sni_hostname": resolved.sni}, json=json, - verify=verify, ) def get( @@ -332,7 +330,6 @@ class http_client: destination: str, headers: dict = {}, authorize: bool = True, - verify: bool = True, ): resolved = self._resolve(destination) @@ -349,7 +346,6 @@ class http_client: f"{resolved.base_url}{path}", headers=headers, extensions={"sni_hostname": resolved.sni}, - verify=verify, )