File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ class ODSSheet(SheetReaderBase):
9292 @property
9393 def name (self ):
9494 return self .native_sheet .name
95-
95+
9696 def to_array (self ):
9797 """reads a sheet in the sheet dictionary, storing each sheet
9898 as an array (rows) of arrays (columns)"""
@@ -121,6 +121,7 @@ def _read_cell(self, cell):
121121 ret = cell .value
122122 return ret
123123
124+
124125class ODSBook (BookReader ):
125126
126127 def getSheet (self , native_sheet ):
@@ -190,7 +191,7 @@ class ODSWriter(BookWriter):
190191
191192 """
192193 def __init__ (self , filename , ** keywords ):
193- BookWriter .__init__ (self , filename ) # in case something will be done
194+ BookWriter .__init__ (self , filename ) # in case something will be done
194195 self .native_book = ezodf .newdoc (doctype = "ods" , filename = filename )
195196
196197 def create_sheet (self , name ):
@@ -216,5 +217,4 @@ def close(self):
216217 # to allow this module to function independently
217218 pass
218219
219- __VERSION__ = "0.0.4"
220-
220+ __VERSION__ = "0.0.5"
You can’t perform that action at this time.
0 commit comments