Skip to content

Commit 21d8271

Browse files
committed
Update "Version" to "1.5.1"
1 parent d2daecd commit 21d8271

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyhelpers/data/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"Affiliation": "Birmingham Centre for Railway Research and Education, School of Engineering, University of Birmingham",
66
"Email": "[email protected]",
77
"Description": "An open-source toolkit for facilitating Python users' data manipulation tasks.",
8-
"Version": "1.5.0",
8+
"Version": "1.5.1",
99
"License": "GPLv3+",
1010
"First release": "September 2019"
1111
}

pyhelpers/store.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ def save_spreadsheet(data, path_to_file, index=False, engine=None, delimiter=','
234234
"""
235235

236236
_, filename = _check_saving_path(path_to_file=path_to_file, verbose=verbose, ret_info=True)
237-
filename_, ext = os.path.splitext(filename)
237+
_, ext = os.path.splitext(filename)
238238

239239
valid_extensions = {".txt", ".csv", ".xlsx", ".xls", ".ods", ".odt"}
240240
assert ext in valid_extensions, f"File extension must be one of {valid_extensions}."

0 commit comments

Comments
 (0)