From c8054bb5a13780589a339ed8405ec6963d7d26f3 Mon Sep 17 00:00:00 2001 From: Tiago Freitas Pereira <tiagofrepereira@gmail.com> Date: Mon, 23 Mar 2020 11:15:05 +0100 Subject: [PATCH] Deprecation warnings --- bob/bio/base/extractor/Extractor.py | 2 ++ bob/bio/base/preprocessor/Preprocessor.py | 1 + 2 files changed, 3 insertions(+) diff --git a/bob/bio/base/extractor/Extractor.py b/bob/bio/base/extractor/Extractor.py index c37e4439..5cc5f46d 100644 --- a/bob/bio/base/extractor/Extractor.py +++ b/bob/bio/base/extractor/Extractor.py @@ -6,6 +6,8 @@ import os from .. import utils +import warnings + class Extractor (object): """This is the base class for all feature extractors. diff --git a/bob/bio/base/preprocessor/Preprocessor.py b/bob/bio/base/preprocessor/Preprocessor.py index dc5d7e47..197182aa 100644 --- a/bob/bio/base/preprocessor/Preprocessor.py +++ b/bob/bio/base/preprocessor/Preprocessor.py @@ -5,6 +5,7 @@ from .. import utils +import warnings class Preprocessor (object): """This is the base class for all preprocessors. -- GitLab