Skip to content

Commit ae7c3ef

Browse files
davidovitchdavidovitch
davidovitch
authored andcommitted
ezodf API changed from sheet to sheets
1 parent 5148c1b commit ae7c3ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/io/excel.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -703,7 +703,7 @@ def _print_ods_cellinfo(self, cell):
703703
def sheet_names(self):
704704
if self.engine == 'ezodf':
705705
# book.sheet.names() is a generator for ezodf
706-
return [sheetname for sheetname in self.book.sheet.names()]
706+
return [sheetname for sheetname in self.book.sheets.names()]
707707
else:
708708
return self.book.sheet_names()
709709

0 commit comments

Comments
 (0)