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)