Added __init__.py

This commit is contained in:
Thomas Forgione 2019-03-27 16:21:41 +01:00
parent 94d9500598
commit cd72dfe318
No known key found for this signature in database
GPG Key ID: 203DAEA747F48F41
1 changed files with 4 additions and 0 deletions

View File

@ -0,0 +1,4 @@
from os.path import dirname, basename, isfile
import glob
modules = glob.glob(dirname(__file__)+"/*/ai.py")
__all__ = ['.'.join(f.split('.')[:-1]) for f in modules if isfile(f)]