From 0a4142808ce14c8d63acf6907e5c7ccdee0cfbe9 Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.dos.anjos@gmail.com> Date: Mon, 17 Mar 2014 09:15:04 +0100 Subject: [PATCH] Fix python3 compatibility issues with doc fix --- xbob/learn/activation/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/xbob/learn/activation/__init__.py b/xbob/learn/activation/__init__.py index b66dfe3..05534bd 100644 --- a/xbob/learn/activation/__init__.py +++ b/xbob/learn/activation/__init__.py @@ -7,5 +7,4 @@ def get_include(): return __import__('pkg_resources').resource_filename(__name__, 'include') # gets sphinx autodoc done right - don't remove it -__all__ = [k for k in dir() if not k.startswith('_')] -del k +__all__ = [_ for _ in dir() if not _.startswith('_')] -- GitLab