name convention change

This commit is contained in:
chfw 2015-02-19 21:07:40 +00:00
parent 5d736a43e5
commit 6d9e481a9f
1 changed files with 2 additions and 2 deletions

View File

@ -107,7 +107,7 @@ class XLBook(BookReader):
BookReader.__init__(self, filename, file_content=file_content, sheetname=sheetname, **keywords)
self.native_book.release_resources()
def sheetIterator(self):
def sheet_iterator(self):
"""Return iterable sheet array"""
if self.sheet_name is not None:
@ -121,7 +121,7 @@ class XLBook(BookReader):
else:
return self.native_book.sheets()
def getSheet(self, native_sheet):
def get_sheet(self, native_sheet):
"""Create a xls sheet"""
return XLSheet(native_sheet)