9 lines
312 B
Python
9 lines
312 B
Python
from .. import wheels
|
|
|
|
# Load all the submodules we need from BAT in one go.
|
|
_bat_modules = wheels.load_wheel(
|
|
"blender_asset_tracer",
|
|
("blendfile", "pack", "pack.progress", "pack.transfer", "pack.shaman", "bpathlib"),
|
|
)
|
|
bat_toplevel, blendfile, pack, progress, transfer, shaman, bpathlib = _bat_modules
|