This commit is contained in:
deathbybandaid 2022-02-10 13:15:05 -05:00
parent f0517bc965
commit d9b559477f

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
import os
import pkgutil
__all__ = list(module for _, module, _ in pkgutil.iter_modules([os.path.dirname(__file__)]))
__path__ = pkgutil.extend_path(__path__, __name__)
for imp, module, ispackage in pkgutil.walk_packages(path=__path__, prefix=__name__+'.'):
__import__(module)