update 43

This commit is contained in:
Connor Olding 2018-03-13 04:04:24 -07:00
parent 23f87a1385
commit 9421b64fd0

View File

@ -19,6 +19,5 @@ from .plotwav import *
# this is similar to default behaviour of having no __all__ variable at all,
# but ours ignores modules as well. this allows for `import sys` and such
# without clobbering `from our_module import *`.
__all__ = [
o for o in locals()
if type(o) != 'module' and not o.startswith('_')]
__all__ = [k for k, v in locals().items()
if not __import__('inspect').ismodule(v) and not k.startswith('_')]