From b66ea6f3c865d4582193d19c75841a2962a2a128 Mon Sep 17 00:00:00 2001 From: Tiago Freitas Pereira <tiagofrepereira@gmail.com> Date: Tue, 31 Oct 2017 16:58:07 +0100 Subject: [PATCH] Removed some garbage code --- bob/bio/gmm/tools/utils.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/bob/bio/gmm/tools/utils.py b/bob/bio/gmm/tools/utils.py index 044c5d9..229481d 100644 --- a/bob/bio/gmm/tools/utils.py +++ b/bob/bio/gmm/tools/utils.py @@ -1,9 +1,6 @@ import bob.bio.base import numpy -import os -import logging -logger = logging.getLogger("bob.bio.gmm") def add_jobs(args, submitter, local_job_adder): """Adds all (desired) jobs of the tool chain to the grid, or to the local list to be executed.""" @@ -68,7 +65,7 @@ def base(algorithm): return algorithm.algorithm if is_video_extension(algorithm) else algorithm -def read_feature(extractor, feature_file, allow_missing_files = False): +def read_feature(extractor, feature_file): feature = extractor.read_feature(feature_file) try: import bob.bio.video -- GitLab