Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 |
|