tweak float exports

This commit is contained in:
Connor Olding 2018-02-02 08:51:39 +01:00
parent 169303813d
commit e7783188bb
2 changed files with 1 additions and 2 deletions

View File

@ -5,7 +5,6 @@
# this is gonna take some work.
from .activation import *
from .float import *
from .initialization import *
from .layer import *
from .learner import *

View File

@ -17,4 +17,4 @@ _sqrt2 = _f(np.sqrt(2))
_invsqrt2 = _f(1/np.sqrt(2))
_pi = _f(np.pi)
__all__ = [o for o in locals()]
__all__ = [o for o in locals() if type(o) != 'module']