From e51c4e47821c205162141f18a425684f6ed49789 Mon Sep 17 00:00:00 2001 From: henryruhs Date: Wed, 11 Jun 2025 15:01:55 +0200 Subject: [PATCH] Cosmetic changes --- facefusion/types.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/facefusion/types.py b/facefusion/types.py index 587d5e1..ee3fc76 100755 --- a/facefusion/types.py +++ b/facefusion/types.py @@ -292,7 +292,6 @@ StateKey = Literal\ 'job_status', 'step_index' ] -ApplyStateItem : TypeAlias = Callable[[Any, Any], None] State = TypedDict('State', { 'command' : str, @@ -323,10 +322,10 @@ State = TypedDict('State', 'face_occluder_model' : FaceOccluderModel, 'face_parser_model' : FaceParserModel, 'face_mask_types' : List[FaceMaskType], - 'face_mask_blur' : float, - 'face_mask_padding' : Padding, + 'face_mask_areas': List[FaceMaskArea], 'face_mask_regions' : List[FaceMaskRegion], - 'face_mask_areas' : List[FaceMaskArea], + 'face_mask_blur': float, + 'face_mask_padding': Padding, 'trim_frame_start' : int, 'trim_frame_end' : int, 'temp_frame_format' : TempFrameFormat, @@ -359,5 +358,6 @@ State = TypedDict('State', 'job_status' : JobStatus, 'step_index' : int }) +ApplyStateItem : TypeAlias = Callable[[Any, Any], None] StateSet : TypeAlias = Dict[AppContext, State]