You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in read_save.py, there are bunch of method checking file extension.
while in the method save_pkl line 16 checking extension with directly slicing string, the method read_yaml line 26 checking extension with os.path.splitext.
for consistency, using unified method to checking file extension is required.
** in pandize_folder, the extension means string without dot. but in save_pkl the extension contains dot.
The text was updated successfully, but these errors were encountered:
in
read_save.py
, there are bunch of method checking file extension.while in the method
save_pkl
line 16 checking extension with directly slicing string, the methodread_yaml
line 26 checking extension withos.path.splitext
.for consistency, using unified method to checking file extension is required.
** in
pandize_folder
, the extension means string without dot. but insave_pkl
the extension contains dot.The text was updated successfully, but these errors were encountered: