diff -r 92932cd370a4 -r c3c3d1318130 graphics/SFC_Objects.py --- a/graphics/SFC_Objects.py Tue Aug 15 16:48:49 2017 +0300 +++ b/graphics/SFC_Objects.py Tue Aug 15 17:01:51 2017 +0300 @@ -820,12 +820,12 @@ if type == "connection": self.Condition = Connector(self, "", "BOOL", wx.Point(0, self.Size[1] / 2), WEST) else: - if condition == None: + if condition is None: condition = "" self.Condition = condition self.RefreshConditionSize() elif self.Type != "connection": - if condition == None: + if condition is None: condition = "" self.Condition = condition self.RefreshConditionSize() @@ -1197,7 +1197,7 @@ # Returns if the point given is in the bounding box def HitTest(self, pt, connectors=True): - return self.BoundingBox.InsideXY(pt.x, pt.y) or self.TestConnector(pt, exclude=False) != None + return self.BoundingBox.InsideXY(pt.x, pt.y) or self.TestConnector(pt, exclude=False) is not None # Refresh the divergence bounding box def RefreshBoundingBox(self):