jbisal commited on
Commit
0af7e32
·
verified ·
1 Parent(s): 7db2a01

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -53,7 +53,7 @@ def get_boxScores() -> list:
53
  href = link['href']
54
  if '/boxscores/' in href and href.endswith('.html') and 's/202' in href:
55
  box_score_links.append(BASE_URL + href)
56
- return set(box_score_links)
57
  except Exception as e:
58
  return f"Error fetching boxScores: {str(e)}"
59
 
 
53
  href = link['href']
54
  if '/boxscores/' in href and href.endswith('.html') and 's/202' in href:
55
  box_score_links.append(BASE_URL + href)
56
+ return list(set(box_score_links))
57
  except Exception as e:
58
  return f"Error fetching boxScores: {str(e)}"
59