From c0ce55a132472cac536e9e30f0bb1fa07bad8521 Mon Sep 17 00:00:00 2001 From: RVC-Boss <129054828+RVC-Boss@users.noreply.github.com> Date: Wed, 26 Mar 2025 15:32:43 +0800 Subject: [PATCH] Update my_utils.py --- tools/my_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/my_utils.py b/tools/my_utils.py index cdb95e0..3369248 100644 --- a/tools/my_utils.py +++ b/tools/my_utils.py @@ -32,7 +32,7 @@ def clean_path(path_str:str): if path_str.endswith(('\\','/')): return clean_path(path_str[0:-1]) path_str = path_str.replace('/', os.sep).replace('\\', os.sep) - return path_str.strip(" ").strip('\'').strip("\n").strip('"').strip(" ").strip("\u202a") + return path_str.strip(" \'\n\"\u202a")#path_str.strip(" ").strip('\'').strip("\n").strip('"').strip(" ").strip("\u202a") def check_for_existance(file_list:list=None,is_train=False,is_dataset_processing=False):