Update utils.py
Browse files
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
|
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 |
|