Some changes to Utilities folder

This commit is contained in:
racka98
2020-11-24 09:43:27 +03:00
parent 3f2853b111
commit 4d13411a11
27 changed files with 1589 additions and 44 deletions
+4
View File
@@ -0,0 +1,4 @@
from os.path import dirname, basename, isfile
import glob
modules = glob.glob(dirname(__file__)+"/*.py")
__all__ = [ basename(f)[:-3] for f in modules if isfile(f) and not f.endswith('__init__.py')]