From fd5a41435b3a6b98554b8fc27959e5913381b643 Mon Sep 17 00:00:00 2001 From: Ruud Date: Tue, 1 Mar 2011 11:01:59 +0100 Subject: [PATCH] No need for import in __init__ --- libs/axl/__init__.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/libs/axl/__init__.py b/libs/axl/__init__.py index df3f2b3..2c1e8d5 100644 --- a/libs/axl/__init__.py +++ b/libs/axl/__init__.py @@ -5,9 +5,3 @@ # This module is part of Axel and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php -import inspect -from .axel import * -__all__ = sorted(name for name, obj in locals().items() - if not (name.startswith('_') or inspect.ismodule(obj))) -__all__.append('axel') -del inspec