From cd2e09aa02a98a67ff9cd6866ee215a2d3aa30a3 Mon Sep 17 00:00:00 2001 From: henryruhs Date: Tue, 17 Feb 2026 09:48:13 +0100 Subject: [PATCH] remove unused method --- facefusion/face_store.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/facefusion/face_store.py b/facefusion/face_store.py index bd14caa4..2b4a6bab 100644 --- a/facefusion/face_store.py +++ b/facefusion/face_store.py @@ -9,10 +9,6 @@ FACE_STORE : FaceStore =\ } -def get_face_store() -> FaceStore: - return FACE_STORE - - def get_static_faces(vision_frame : VisionFrame) -> Optional[List[Face]]: vision_hash = create_hash(vision_frame.tobytes()) return FACE_STORE.get('static_faces').get(vision_hash)