import ModelAPI
from macros.rectangle.feature import SketchPlugin_Rectangle
from macros.compoundVertices.feature import compoundVertices
+from macros.importParameters.feature import importParameters
from macros.box.feature import BoxFeature
aFeature = SketchPlugin_Rectangle().__disown__()
elif theFeatureID == compoundVertices.ID():
aFeature = compoundVertices().__disown__()
+ elif theFeatureID == importParameters.ID():
+ aFeature = importParameters().__disown__()
elif theFeatureID == BoxFeature.ID():
aFeature = BoxFeature().__disown__()
else: