AlexNijjar commited on
Commit
3de0b09
β€’
1 Parent(s): 7410cee

Fix returning on invalid run

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -69,7 +69,7 @@ def fetch_wandb_data():
69
 
70
  for run in wandb_runs:
71
  if not is_valid_run(run):
72
- return
73
 
74
  submissions: set[int] = set()
75
  benchmarks: set[int] = set()
 
69
 
70
  for run in wandb_runs:
71
  if not is_valid_run(run):
72
+ continue
73
 
74
  submissions: set[int] = set()
75
  benchmarks: set[int] = set()