bstraehle commited on
Commit
fc997be
·
verified ·
1 Parent(s): 56c6a09

Update utils.py

Browse files
Files changed (1) hide show
  1. utils.py +1 -1
utils.py CHANGED
@@ -25,7 +25,7 @@ def read_file_json(file_path):
25
  if ext == ".csv":
26
  df = pd.read_csv(file_path)
27
  elif ext in (".xls", ".xlsx"):
28
- df = pd.read_excel(file_path, engine="openpyxl", style_frame=True)
29
  elif ext in (".json", ".jsonl"):
30
  df = pd.read_json(file_path)
31
 
 
25
  if ext == ".csv":
26
  df = pd.read_csv(file_path)
27
  elif ext in (".xls", ".xlsx"):
28
+ df = pd.read_excel(file_path)
29
  elif ext in (".json", ".jsonl"):
30
  df = pd.read_json(file_path)
31