From 69032ac48e103c253136da52c060dfffab7a2456 Mon Sep 17 00:00:00 2001 From: henryruhs Date: Mon, 11 Nov 2024 12:39:39 +0100 Subject: [PATCH] Fix spacing --- facefusion/typing.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/facefusion/typing.py b/facefusion/typing.py index b450d700..a6dfb2b1 100755 --- a/facefusion/typing.py +++ b/facefusion/typing.py @@ -252,7 +252,7 @@ State = TypedDict('State', { 'command' : str, 'config_path' : str, - 'temp_path': str, + 'temp_path' : str, 'jobs_path' : str, 'source_paths' : List[str], 'target_path' : str, @@ -298,7 +298,7 @@ State = TypedDict('State', 'execution_thread_count' : int, 'execution_queue_count' : int, 'download_providers' : List[DownloadProviderKey], - 'skip_download': bool, + 'skip_download' : bool, 'video_memory_strategy' : VideoMemoryStrategy, 'system_memory_limit' : int, 'log_level' : LogLevel,