fix: disable SSL verification warnings by commenting out verify=False lines

This commit is contained in:
2025-08-18 21:58:10 +02:00
parent e7b0fdec00
commit 6eb9598012

View File

@@ -604,7 +604,7 @@ def refresh_data():
"https://app.myice.hockey/api/mobilerest/refreshdata",
headers=mobile_headers,
data=f"token={userdata['token']}&id_club={userdata['id_club']}&language=FR",
verify=False,
# verify=False,
) as r:
r.raise_for_status()
return r.json()
@@ -667,7 +667,7 @@ def mobile_game(
"language=FR",
]
),
verify=False,
# verify=False,
) as r:
data = r.json()["eventData"]
players = data["convocation"]["available"]