From fba4447db6596979af5d71695a4e69b579ab851f Mon Sep 17 00:00:00 2001 From: Amir MOHAMMADI <amir.mohammadi@idiap.ch> Date: Mon, 27 Nov 2017 14:20:56 +0100 Subject: [PATCH] bob.db.base.Database is deprecated. --- bob/bio/base/database/database.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bob/bio/base/database/database.py b/bob/bio/base/database/database.py index 2ab51564..255cd3a6 100644 --- a/bob/bio/base/database/database.py +++ b/bob/bio/base/database/database.py @@ -9,7 +9,7 @@ from numpy.testing.decorators import setastest import bob.db.base -class BioDatabase(six.with_metaclass(abc.ABCMeta, bob.db.base.Database)): +class BioDatabase(six.with_metaclass(abc.ABCMeta, bob.db.base.FileDatabase)): """This class represents the basic API for database access. Please use this class as a base class for your database access classes. Do not forget to call the constructor of this base class in your derived class. -- GitLab