From d52f04ea22f75956b627d8043e2b32de2e324f55 Mon Sep 17 00:00:00 2001 From: Amir MOHAMMADI <amir.mohammadi@idiap.ch> Date: Tue, 28 Nov 2017 18:09:38 +0100 Subject: [PATCH] inherit from object --- bob/pad/base/algorithm/Algorithm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bob/pad/base/algorithm/Algorithm.py b/bob/pad/base/algorithm/Algorithm.py index 6996f5c..2d18387 100644 --- a/bob/pad/base/algorithm/Algorithm.py +++ b/bob/pad/base/algorithm/Algorithm.py @@ -9,7 +9,7 @@ import os from bob.bio.base import utils -class Algorithm: +class Algorithm(object): """This is the base class for all anti-spoofing algorithms. It defines the minimum requirements for all derived algorithm classes. -- GitLab