]> SALOME platform Git repositories - modules/shaper.git/blob - src/PythonAPI/model/connection/connection.py
Salome HOME
Add assertions to set attribute for features.
[modules/shaper.git] / src / PythonAPI / model / connection / connection.py
1 """Export to GEOM Interface
2 Author: Sergey Pokhodenko
3 Copyright (C) 2014-20xx CEA/DEN, EDF R&D
4 """
5
6 from model.roots import Interface
7
8
9 def exportToGEOM(part):
10     """Export the Part to GEOM module."""
11     feature = part.addFeature("ExportToGEOM")
12     feature.execute()