From de883bc06246d14abc2a706e4acfdd63aaf024ad Mon Sep 17 00:00:00 2001 From: Marko Henning Date: Mon, 25 Nov 2024 13:39:18 +0100 Subject: [PATCH] removed unused parameter --- scraibe/misc.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scraibe/misc.py b/scraibe/misc.py index c8e89a1..f5d2bfe 100644 --- a/scraibe/misc.py +++ b/scraibe/misc.py @@ -53,8 +53,7 @@ def config_diarization_yaml(file_path: str, path_to_segmentation: str = None) -> def set_threads(parse_threads=None, - yaml_threads=None, - env_var_threads=None): + yaml_threads=None): global SCRAIBE_NUM_THREADS if parse_threads is not None: if not isinstance(parse_threads, int):