Files
create/src/Mod/BIM/bimcommands/__init__.py
marcuspollio 57d5464ae6 BIM: add missing license (#20906)
* BIM: add missing license

* BIM: add SPDX License id to init.py

* Revert Dice3DS license
2025-05-05 17:45:38 +02:00

14 lines
329 B
Python

# SPDX-License-Identifier: LGPL-2.1-or-later
import glob
import os
import Arch_rc
import PartGui
# 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 *