Salome HOME
Merge remote-tracking branch 'origin/ngo/macros'
[modules/shaper.git] / src / PythonAddons / macros / compoundVertices / feature.py
index d089f743431c41396bd2b66b4b18165a69898092..e7ba419b112c7c07bda26f520e5261206f00a4ae 100644 (file)
@@ -2,7 +2,6 @@
 Author: Nathalie Gore
 """
 
-from qtsalome import QMessageBox
 from salome.shaper import model
 from salome.shaper import geom
 import ModelAPI
@@ -79,7 +78,6 @@ class compoundVertices(model.Feature):
                 for line in file:
                     coord = line.split(self.separator)
                     if len(coord) != 3:
-                        #QMessageBox.warning( self, 'Error!', '3D coords waited!' )
                         return
                     x = float(coord[0]); y = float(coord[1]); z = float(coord[2]);
                     point = model.addPoint(part, x,y,z); point.execute(True); self.lfeatures.append(point)