From 72f4bcc640c2277867a056acb33be03494b77f68 Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.anjos@idiap.ch> Date: Wed, 17 Aug 2016 16:42:12 +0200 Subject: [PATCH] Add missing get_config() --- bob/ip/facelandmarks/__init__.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/bob/ip/facelandmarks/__init__.py b/bob/ip/facelandmarks/__init__.py index 5a6eb15..9bbd56a 100644 --- a/bob/ip/facelandmarks/__init__.py +++ b/bob/ip/facelandmarks/__init__.py @@ -1,4 +1,17 @@ +#!/usr/bin/env python +# vim: set fileencoding=utf-8 : + from .utils import * + +def get_config(): + """ + Returns a string containing the configuration information. + + """ + import bob.extension + return bob.extension.get_config(__name__) + + # gets sphinx autodoc done right - don't remove it __all__ = [_ for _ in dir() if not _.startswith('_')] -- GitLab