From 7be7036c1dd5c5134e1491b5a0059017651d3ed6 Mon Sep 17 00:00:00 2001 From: Amir MOHAMMADI <amir.mohammadi@idiap.ch> Date: Thu, 8 Feb 2018 15:00:52 +0100 Subject: [PATCH] don't return half annoations in failsafe --- bob/bio/base/annotator/FailSafe.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bob/bio/base/annotator/FailSafe.py b/bob/bio/base/annotator/FailSafe.py index 6b9cec69..04a443a9 100644 --- a/bob/bio/base/annotator/FailSafe.py +++ b/bob/bio/base/annotator/FailSafe.py @@ -42,4 +42,7 @@ class FailSafe(Base): # check if we have all the required annotations if all(key in kwargs['annotations'] for key in self.required_keys): break + else: # this else is for the for loop + # we don't want to return half of the annotations + kwargs['annotations'] = {} return kwargs['annotations'] -- GitLab