11 lines
282 B
Python
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 *
|