Skip to content

Commit 5c0821b

Browse files
committed
pep8 styling
1 parent 91fc2d3 commit 5c0821b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pyexcel_ods3/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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+
124125
class 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"

0 commit comments

Comments
 (0)