PEP8 refactor

This commit is contained in:
iuvbio 2020-02-23 17:09:19 +01:00
parent 26c1fe1f00
commit 176921b4a5
1 changed files with 2 additions and 1 deletions

View File

@ -2,7 +2,8 @@
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))
for sheet in doc.sheets:
print("-"*40)