Remove utils import from prototorch/__init__.py

This commit is contained in:
blackfly 2020-04-11 15:12:53 +02:00
parent c54d14c55e
commit 955661af95

View File

@ -2,10 +2,9 @@
__version__ = '0.1.1-dev0'
from prototorch import functions, modules, utils
from prototorch import functions, modules
__all__ = [
'functions',
'modules',
'utils',
]