File tree Expand file tree Collapse file tree 1 file changed +12
-9
lines changed
custom_components/yerushamayim Expand file tree Collapse file tree 1 file changed +12
-9
lines changed Original file line number Diff line number Diff line change @@ -62,11 +62,12 @@ def __init__(self, hass: HomeAssistant):
62
62
method = "GET" ,
63
63
resource = URL ,
64
64
encoding = "UTF-8" ,
65
- username = None ,
66
- password = None ,
67
- headers = headers ,
68
65
auth = None ,
66
+ headers = headers ,
67
+ params = None
68
+ data = None
69
69
verify_ssl = False ,
70
+ ssl_cipher_list = "python_default"
70
71
timeout = 30
71
72
)
72
73
@@ -76,11 +77,12 @@ def __init__(self, hass: HomeAssistant):
76
77
method = "GET" ,
77
78
resource = COLDMETER_API ,
78
79
encoding = "UTF-8" ,
79
- username = None ,
80
- password = None ,
81
- headers = headers ,
82
80
auth = None ,
81
+ headers = headers ,
82
+ params = None
83
+ data = None
83
84
verify_ssl = False ,
85
+ ssl_cipher_list = "python_default"
84
86
timeout = 30
85
87
)
86
88
@@ -90,11 +92,12 @@ def __init__(self, hass: HomeAssistant):
90
92
method = "GET" ,
91
93
resource = REST_API ,
92
94
encoding = "UTF-8" ,
93
- username = None ,
94
- password = None ,
95
- headers = rest_headers ,
96
95
auth = None ,
96
+ headers = rest_headers ,
97
+ params = None
98
+ data = None
97
99
verify_ssl = False ,
100
+ ssl_cipher_list = "python_default"
98
101
timeout = 30
99
102
)
100
103
You can’t perform that action at this time.
0 commit comments