Added __init__.py

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