From 62a69cddd2df4d88f889acd1b017bde576fd9839 Mon Sep 17 00:00:00 2001 From: henryruhs Date: Wed, 12 Feb 2025 10:33:51 +0100 Subject: [PATCH] Fix import order --- face_swapper/src/inferencing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/face_swapper/src/inferencing.py b/face_swapper/src/inferencing.py index 18451bc..d915992 100644 --- a/face_swapper/src/inferencing.py +++ b/face_swapper/src/inferencing.py @@ -5,7 +5,7 @@ import torch from .helper import calc_id_embedding, convert_to_vision_frame, convert_to_vision_tensor, read_image from .models.generator import AdaptiveEmbeddingIntegrationNetwork -from .types import Generator, Embedder, VisionFrame +from .types import Embedder, Generator, VisionFrame CONFIG = configparser.ConfigParser() CONFIG.read('config.ini')