Files
create/src/Mod/BIM/bimcommands/__init__.py
2024-05-25 22:02:47 +02:00

11 lines
282 B
Python

import Arch_rc
import PartGui
import os
import glob
# populate the list of submodules
modules = glob.glob(os.path.join(os.path.dirname(__file__), "*.py"))
__all__ = [os.path.basename(f)[:-3] for f in modules if os.path.isfile(f) and not f.endswith('__init__.py')]
from . import *