From 1d2fd13452d936a9f4bb58d3414ab97f229919d2 Mon Sep 17 00:00:00 2001 From: spo Date: Mon, 26 Oct 2015 15:40:20 +0300 Subject: [PATCH] Clean code --- src/PythonAPI/model/tools.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/PythonAPI/model/tools.py b/src/PythonAPI/model/tools.py index 8626b823b..eb6243e82 100644 --- a/src/PythonAPI/model/tools.py +++ b/src/PythonAPI/model/tools.py @@ -48,19 +48,10 @@ class Selection: assert(len(args) > 1 and len(args) < 4) assert(isinstance(args[0], basestring) or isinstance(args[0], ModelAPI.ModelAPI_Result)) -# "args[0] should be str or ModelAPI_Result (%s given)." % -# type(args[0])) if isinstance(args[0], basestring): assert(isinstance(args[1], basestring)) -# , -# "args[1] should be str (%s given)." % -# type(args[1])) elif isinstance(args[0], ModelAPI.ModelAPI_Result) or args[0] is None: assert(isinstance(args[1], GeomAPI.GeomAPI_Shape)) - -# , -# "args[1] should be GeomAPI_Shape (%s given)." % -# type(args[1])) self.args = args -- 2.39.2