Path: Use lazyloader for importing some modules

This commit is contained in:
Russell Johnson
2020-05-21 23:24:17 -05:00
parent a9ee9af710
commit 090fe69627
@@ -36,7 +36,10 @@ import Path
import PathScripts.PathLog as PathLog
import PathScripts.PathUtils as PathUtils
import math
import Part
# lazily loaded modules
from lazy_loader.lazy_loader import LazyLoader
Part = LazyLoader('Part', globals(), 'Part')
PathLog.setLevel(PathLog.Level.INFO, PathLog.thisModule())