Skip to content

Commit

Permalink
Remove redundant code (#6576)
Browse files Browse the repository at this point in the history
  • Loading branch information
webfiltered authored Jan 23, 2025
1 parent 96e2a45 commit ce557cf
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(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")
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")

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

Expand Down

0 comments on commit ce557cf

Please sign in to comment.