Shaltiel commited on
Commit
3d67d55
1 Parent(s): 81f9826

Fixed counters

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