graphics/SFC_Objects.py
changeset 1743 c3c3d1318130
parent 1741 dd94b9a68c61
child 1744 69dfdb26f600
--- 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):