Skip to content

Commit

Permalink
revert changes in folder_paths
Browse files Browse the repository at this point in the history
  • Loading branch information
bezo97 committed Dec 26, 2024
1 parent f04ad04 commit f66d5cf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions folder_paths.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@

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

output_directory = os.path.join(base_path, "output")
temp_directory = os.path.join(base_path, "temp")
input_directory = os.path.join(base_path, "input")
user_directory = os.path.join(base_path, "user")
output_directory = os.path.join(os.path.dirname(os.path.realpath(__file__)), "output")
temp_directory = os.path.join(os.path.dirname(os.path.realpath(__file__)), "temp")
input_directory = os.path.join(os.path.dirname(os.path.realpath(__file__)), "input")
user_directory = os.path.join(os.path.dirname(os.path.realpath(__file__)), "user")

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

Expand Down

0 comments on commit f66d5cf

Please sign in to comment.