diff --git a/pandas_ods_reader/tools.py b/pandas_ods_reader/tools.py index 9dd9582..d039176 100644 --- a/pandas_ods_reader/tools.py +++ b/pandas_ods_reader/tools.py @@ -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)