We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e587e6 commit b540713Copy full SHA for b540713
mfr/extensions/tabular/libs/xlrd_tools.py
@@ -19,7 +19,8 @@ def xlsx_xlrd(fp):
19
20
for sheet in wb.sheets():
21
if sheet.ncols > max_size or sheet.nrows > max_size:
22
- raise TableTooBigError('Table is too large to render.', '.xlsx')
+ raise TableTooBigError('Table is too large to render.', '.xlsx',
23
+ nbr_cols=sheet.ncols, nbr_rows=sheet.nrows)
24
25
if sheet.ncols < 1 or sheet.nrows < 1:
26
sheets[sheet.name] = ([], [])
0 commit comments