From 176921b4a5f5521c62de67d418f285bbf805bcd6 Mon Sep 17 00:00:00 2001 From: iuvbio Date: Sun, 23 Feb 2020 17:09:19 +0100 Subject: [PATCH] PEP8 refactor --- pandas_ods_reader/tools.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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)