removed cert verification for requests library

Former-commit-id: 4914b98a21478a10be7d2f737dd6d5669b4c5681
This commit is contained in:
Arthur Lu
2022-02-20 23:38:18 +00:00
parent d7ed695ad1
commit 9a1a45f1c9
2 changed files with 5 additions and 6 deletions

View File

@@ -51,7 +51,7 @@ def get_metrics_data_formatted(client, competition):
return out
def get_pit_data_formatted(client, competition):
x=requests.get("https://titanscouting.epochml.org/api/fetchAllTeamNicknamesAtCompetition?competition="+competition)
x=requests.get("https://titanscouting.epochml.org/api/fetchAllTeamNicknamesAtCompetition?competition="+competition, verify=False)
x = x.json()
x = x['data']
x = x.keys()