1
0
mirror of https://github.com/corpnewt/gibMacOS.git synced 2025-04-17 20:26:16 +02:00
gibMacOS/Scripts/__init__.py
2018-10-06 22:07:05 -05:00

4 lines
201 B
Python

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')]