You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While loading a sheet from a reader, if a missing sheet name is provided a generic CalamineError is raised instead of the more specific SheetNotFoundError.
My use case is:
sheets= []
forreaderinreaders:
try:
sheet=reader.load_sheet_by_name("sheet_name")
exceptSheetNotFoundError:
continue# Do some other stuff with sheet before appending to list.
The text was updated successfully, but these errors were encountered:
sean-moore3
changed the title
load_sheet_by_name raises generic CalamineError instead of SheetNotFound error
load_sheet_by_name raises generic CalamineError instead of SheetNotFoundError
Apr 4, 2024
Hi,
While loading a sheet from a reader, if a missing sheet name is provided a generic
CalamineError
is raised instead of the more specificSheetNotFoundError
.My use case is:
The text was updated successfully, but these errors were encountered: