fix(xls): Don't remove first row

This commit is contained in:
Faris Ansari 2019-09-25 15:05:07 +05:30
parent b024d0f892
commit d2fe007177

View file

@ -104,7 +104,6 @@ def read_xls_file_from_attached_file(content):
rows = []
for i in range(sheet.nrows):
rows.append(sheet.row_values(i))
rows = rows[1:]
return rows
def build_xlsx_response(data, filename):