Files
hackintosh-b760-13700k/hackintosh-guide/gibMacOS-master/Scripts/__init__.py
2026-02-05 14:06:25 +00:00

4 lines
201 B
Python
Executable File

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