From 1a9d060798967d350d4838e73f99a6944c7b2570 Mon Sep 17 00:00:00 2001 From: Thinh Nguyen Date: Wed, 21 Aug 2024 10:00:05 -0500 Subject: [PATCH] chore: minor function rename --- element_facemap/facial_behavior_estimation.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/element_facemap/facial_behavior_estimation.py b/element_facemap/facial_behavior_estimation.py index 9c7f4e9..51e32b8 100644 --- a/element_facemap/facial_behavior_estimation.py +++ b/element_facemap/facial_behavior_estimation.py @@ -318,14 +318,14 @@ def make(self, key): ] @memoized_result(uniqueness_dict=params, output_directory=output_dir) - def run_facemap_process(): + def _run_facemap_process(): facemap_run( filenames=video_files, savepath=output_dir.as_posix(), **params, ) - run_facemap_process() + _run_facemap_process() results_proc_fp = next(output_dir.glob("*_proc.npy")) creation_time = datetime.fromtimestamp(results_proc_fp.stat().st_ctime)