Skip to content

Commit 8e73a88

Browse files
chore(pre-commit.ci): auto fixes
1 parent 5cdc08d commit 8e73a88

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

src/so_vits_svc_fork/gui.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -362,9 +362,11 @@ def main():
362362
sg.FileBrowse(
363363
initial_folder=".",
364364
key="input_path_browse",
365-
file_types=get_supported_file_types_concat()
366-
if os.name == "nt"
367-
else get_supported_file_types(),
365+
file_types=(
366+
get_supported_file_types_concat()
367+
if os.name == "nt"
368+
else get_supported_file_types()
369+
),
368370
),
369371
sg.FolderBrowse(
370372
button_text="Browse(Folder)",

src/so_vits_svc_fork/preprocessing/preprocess_resample.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def preprocess_resample(
116116
warnings.warn(
117117
f"Recommended folder structure has changed since v1.0.0. "
118118
"Please move your dataset directly under dataset_raw folder. "
119-
f"Recoginzed {in_path_relative} as {new_in_path_relative}"
119+
f"Recognized {in_path_relative} as {new_in_path_relative}"
120120
)
121121
in_path_relative = new_in_path_relative
122122

0 commit comments

Comments
 (0)