Shaltiel commited on
Commit
02e5b77
1 Parent(s): 3d67d55

Fixed counters

Browse files
Files changed (1) hide show
  1. src/populate.py +1 -1
src/populate.py CHANGED
@@ -28,7 +28,7 @@ def get_evaluation_queue_df(save_path: str, cols: list) -> list[pd.DataFrame]:
28
  for entry in entries:
29
  if ".json" in entry:
30
  file_path = os.path.join(save_path, entry)
31
- if '/counters/' in file_path: continue
32
  with open(file_path) as fp:
33
  data = json.load(fp)
34
 
 
28
  for entry in entries:
29
  if ".json" in entry:
30
  file_path = os.path.join(save_path, entry)
31
+ if 'counters/' in file_path: continue
32
  with open(file_path) as fp:
33
  data = json.load(fp)
34