Skip to content

Commit

Permalink
Change default value (#2733) (patch)
Browse files Browse the repository at this point in the history
### Fixed

- Unless otherwise specified, api requests are verified.
  • Loading branch information
islean authored Dec 4, 2023
1 parent acffdc1 commit 2b89d9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cg/io/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit 2b89d9f

Please sign in to comment.