mirror of
https://github.com/facefusion/facefusion.git
synced 2026-04-23 18:06:08 +02:00
rename method argument
This commit is contained in:
@@ -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)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user