From 2b89d9f65690568ee496cc7854b4f32ffff2d5cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isak=20Ohlsson=20=C3=85ngnell?= <40887124+islean@users.noreply.github.com> Date: Mon, 4 Dec 2023 10:47:30 +0100 Subject: [PATCH] Change default value (#2733) (patch) ### Fixed - Unless otherwise specified, api requests are verified. --- cg/io/controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cg/io/controller.py b/cg/io/controller.py index e44c29642d..27a7bbc953 100644 --- a/cg/io/controller.py +++ b/cg/io/controller.py @@ -88,6 +88,6 @@ class APIRequest: @classmethod def api_request_from_content( - cls, api_method: str, url: str, headers: dict, json: dict, verify: bool = False + cls, api_method: str, url: str, headers: dict, json: dict, verify: bool = True ) -> Response: return cls.api_request[api_method](url=url, headers=headers, json=json, verify=verify)