Skip to content

Commit

Permalink
Default requests verify to True (not None)
Browse files Browse the repository at this point in the history
  • Loading branch information
RichieB2B committed Jan 23, 2024
1 parent 5bbb92c commit 6657ac7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/TWCManager/Vehicle/TeslaAPI.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def __init__(self, master):
self.config = master.config
self.baseURL = self.config["config"].get("teslaApiUrl", "https://owner-api.teslamotors.com/api/1/vehicles")
self.refreshClientID = self.config["config"].get("teslaApiClientID", "ownerapi")
self.proxyCert = self.config["config"].get("httpProxyCert", None)
self.proxyCert = self.config["config"].get("httpProxyCert", True)
self.minChargeLevel = self.config["config"].get("minChargeLevel", -1)
self.chargeUpdateInterval = self.config["config"].get(
"cloudUpdateInterval", 1800
Expand Down

0 comments on commit 6657ac7

Please sign in to comment.