use_columns
silently skips empty columns at the beginning
#303
Labels
use_columns
silently skips empty columns at the beginning
#303
Given the following spreadsheet with an empty first column:
Loading the sheet with e.g.
use_columns='B:C'
(oruse_columns=[1, 2]
) actually selects columns C and D:And raises
ColumnNotFoundError
withuse_columns='B:D'
oruse_columns=[1, 2, 3]
:The text was updated successfully, but these errors were encountered: