X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPythonAddons%2Faddons_Features.py;h=bdafa15175d1ee117315bd3e8a4c34e96da22fd6;hb=a211165b993cec59888b300199b44b525c0daf69;hp=3da8b8f1efd9d9f6e7adf275c64e258bc1e16076;hpb=37207795785ee1bec919e7f2c48a325ca2cf3da7;p=modules%2Fshaper.git diff --git a/src/PythonAddons/addons_Features.py b/src/PythonAddons/addons_Features.py index 3da8b8f1e..bdafa1517 100644 --- a/src/PythonAddons/addons_Features.py +++ b/src/PythonAddons/addons_Features.py @@ -24,7 +24,6 @@ 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 class PythonFeaturesPlugin(ModelAPI.ModelAPI_Plugin): @@ -50,8 +49,6 @@ class PythonFeaturesPlugin(ModelAPI.ModelAPI_Plugin): aFeature = compoundVertices().__disown__() elif theFeatureID == importParameters.ID(): aFeature = importParameters().__disown__() - elif theFeatureID == BoxFeature.ID(): - aFeature = BoxFeature().__disown__() else: raise Exception("No such feature %s" % theFeatureID)