File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -362,9 +362,11 @@ def main():
362
362
sg .FileBrowse (
363
363
initial_folder = "." ,
364
364
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
+ ),
368
370
),
369
371
sg .FolderBrowse (
370
372
button_text = "Browse(Folder)" ,
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ def preprocess_resample(
116
116
warnings .warn (
117
117
f"Recommended folder structure has changed since v1.0.0. "
118
118
"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 } "
120
120
)
121
121
in_path_relative = new_in_path_relative
122
122
You can’t perform that action at this time.
0 commit comments