lisabdunlap commited on
Commit
4801d40
·
verified ·
1 Parent(s): cf4feda

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -4,7 +4,7 @@ import pandas as pd
4
 
5
  def list_saved_results():
6
  """List all saved result files in the saved_results directory."""
7
- results_dir = os.path.join("vibecheck_results")
8
  if not os.path.exists(results_dir):
9
  return []
10
 
@@ -43,7 +43,7 @@ def load_saved_result(filename):
43
  """Load a saved result file."""
44
  import pickle
45
 
46
- results_dir = os.path.join("vibecheck_results")
47
  filepath = os.path.join(results_dir, filename)
48
 
49
  if not os.path.exists(filepath):
 
4
 
5
  def list_saved_results():
6
  """List all saved result files in the saved_results directory."""
7
+ results_dir = os.path.join(".")
8
  if not os.path.exists(results_dir):
9
  return []
10
 
 
43
  """Load a saved result file."""
44
  import pickle
45
 
46
+ results_dir = os.path.join(".")
47
  filepath = os.path.join(results_dir, filename)
48
 
49
  if not os.path.exists(filepath):