Salome HOME
[PY3] use python3 idioms, fix relative imports, fix plugins
[modules/smesh.git] / src / Tools / MacMesh / MacMesh / CentralUnrefine.py
index de90ea4456dbac74fd850811355025009045246b..cd4041a183dd428e636f56abc1995660038a59d3 100644 (file)
@@ -178,7 +178,7 @@ def RemoveLastObj() :
     Config.Connections = Config.Connections[:-1]
 
 def GroupArray(indices, GroupNames) :
-    if type(indices) is int :
+    if isinstance(indices, int) :
         indices = [indices]
         GroupNames = [GroupNames]
     Output = [None,None,None,None]