Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -79,7 +79,7 @@ def get_excel_files(folder):
|
|
79 |
return [f for f in os.listdir(folder) if f.endswith('.xlsx')]
|
80 |
|
81 |
def get_sheet_names(file):
|
82 |
-
xls = pd.ExcelFile(os.path.join(
|
83 |
return xls.sheet_names
|
84 |
|
85 |
def process_and_compare(file1, sheet1, file2, sheet2):
|
|
|
79 |
return [f for f in os.listdir(folder) if f.endswith('.xlsx')]
|
80 |
|
81 |
def get_sheet_names(file):
|
82 |
+
xls = pd.ExcelFile(os.path.join(PDF_FOLDER, file))
|
83 |
return xls.sheet_names
|
84 |
|
85 |
def process_and_compare(file1, sheet1, file2, sheet2):
|