Skip to content

Commit f66d5cf

Browse files
committed
revert changes in folder_paths
1 parent f04ad04 commit f66d5cf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

folder_paths.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@
3939

4040
folder_names_and_paths["classifiers"] = ([os.path.join(models_dir, "classifiers")], {""})
4141

42-
output_directory = os.path.join(base_path, "output")
43-
temp_directory = os.path.join(base_path, "temp")
44-
input_directory = os.path.join(base_path, "input")
45-
user_directory = os.path.join(base_path, "user")
42+
output_directory = os.path.join(os.path.dirname(os.path.realpath(__file__)), "output")
43+
temp_directory = os.path.join(os.path.dirname(os.path.realpath(__file__)), "temp")
44+
input_directory = os.path.join(os.path.dirname(os.path.realpath(__file__)), "input")
45+
user_directory = os.path.join(os.path.dirname(os.path.realpath(__file__)), "user")
4646

4747
filename_list_cache: dict[str, tuple[list[str], dict[str, float], float]] = {}
4848

0 commit comments

Comments
 (0)