Jon Solow commited on
Commit
5cfd606
·
1 Parent(s): 55a45e7

Fix bare exception

Browse files
Files changed (1) hide show
  1. src/stats.py +1 -1
src/stats.py CHANGED
@@ -419,7 +419,7 @@ def get_yahoo_stats() -> dict[int, dict[str, dict[str, float]]]:
419
  def get_live_schedule() -> dict[int, dict[str, dict[str, str | int | pd.Timestamp]]]:
420
  try:
421
  return get_yahoo_schedule()
422
- except:
423
  return {}
424
 
425
 
 
419
  def get_live_schedule() -> dict[int, dict[str, dict[str, str | int | pd.Timestamp]]]:
420
  try:
421
  return get_yahoo_schedule()
422
+ except Exception:
423
  return {}
424
 
425