rename method argument

This commit is contained in:
harisreedhar
2025-11-14 17:30:20 +05:30
committed by henryruhs
parent 29e3014945
commit 3ef90673b5
+2 -2
View File
@@ -5,9 +5,9 @@ from facefusion import state_manager
from facefusion.filesystem import create_directory, get_file_extension, get_file_name, move_file, remove_directory, resolve_file_pattern
def get_temp_file_path(file_path : str, output_path : str) -> str:
def get_temp_file_path(file_path : str, move_path : str) -> str:
temp_directory_path = get_temp_directory_path(file_path)
temp_file_extension = get_file_extension(output_path)
temp_file_extension = get_file_extension(move_path)
return os.path.join(temp_directory_path, 'temp' + temp_file_extension)