From 563d39b8568d230939b07b615998d1d4d66bf96f Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.dos.anjos@gmail.com> Date: Tue, 5 Nov 2013 11:14:31 +0100 Subject: [PATCH] Remove old constructions from initialization --- xbob/io/__init__.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/xbob/io/__init__.py b/xbob/io/__init__.py index 46f1e34..5841825 100644 --- a/xbob/io/__init__.py +++ b/xbob/io/__init__.py @@ -1,10 +1,6 @@ -from ._convert import convert -from . import log -from . import random - def get_include(): """Returns the directory containing the C/C++ API include directives""" return __import__('pkg_resources').resource_filename(__name__, 'include') -__all__ = ['convert', 'log', 'random'] +__all__ = [] -- GitLab