Added __init__.py

This commit is contained in:
Thomas Forgione 2019-03-26 11:27:01 +01:00
parent 1b4ba5a197
commit 776a7bdf77
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)]