"""Verify Excel file""" import openpyxl wb = openpyxl.load_workbook("outputs/EDF_Report_20260312.xlsx") for s in wb.sheetnames: ws = wb[s] print(f" {s}: {ws.max_row} rows x {ws.max_column} cols")