PEP8 refactor
This commit is contained in:
parent
26c1fe1f00
commit
176921b4a5
|
|
@ -2,7 +2,8 @@
|
||||||
|
|
||||||
|
|
||||||
def ods_info(doc):
|
def ods_info(doc):
|
||||||
"""Prints the number of sheets, their names, and number of rows and columns"""
|
"""Prints the number of sheets, their names, and number of rows and columns
|
||||||
|
"""
|
||||||
print("Spreadsheet contains %d sheet(s)." % len(doc.sheets))
|
print("Spreadsheet contains %d sheet(s)." % len(doc.sheets))
|
||||||
for sheet in doc.sheets:
|
for sheet in doc.sheets:
|
||||||
print("-"*40)
|
print("-"*40)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue