Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mfinzi committed Apr 21, 2021
1 parent 7da3f7f commit df0f56f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion emlp/nn/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import importlib
import pkgutil
__all__ = []
__all__ = [] # expose objax implementation as base nn
module = importlib.import_module('.'+'objax',package=__name__)
globals().update({k: getattr(module, k) for k in module.__all__})
__all__ += module.__all__

0 comments on commit df0f56f

Please sign in to comment.