rbiswasfc commited on
Commit
16cc6e8
·
1 Parent(s): 66e6ddc
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -40,7 +40,7 @@ def get_stats():
40
 
41
 
42
  def get_example(selected_type=None):
43
- evaluated_ids = set([row["example_id"] for row in examples.rows])
44
  print(f"completed: {evaluated_ids}")
45
 
46
  available_examples = [
@@ -92,7 +92,7 @@ style = Style("""
92
  a:hover { text-decoration: underline; }
93
  """)
94
 
95
- app, rt = fast_app(live=True, hdrs=(style,))
96
 
97
 
98
  def render_stats(stats):
 
40
 
41
 
42
  def get_example(selected_type=None):
43
+ evaluated_ids = set(row["example_id"] for row in examples())
44
  print(f"completed: {evaluated_ids}")
45
 
46
  available_examples = [
 
92
  a:hover { text-decoration: underline; }
93
  """)
94
 
95
+ app, rt = fast_app(hdrs=(style,))
96
 
97
 
98
  def render_stats(stats):