This commit is contained in:
Christian Stade-Schuldt
2017-05-26 01:14:59 -07:00
parent 46b7e369b3
commit 6c1cc24ad5
+1 -1
View File
@@ -465,7 +465,7 @@ class MayaInterval(object):
self.start == i.start or
start <= end
)
if ((either_instant and instant_overlap) or (start < end)):
if (either_instant and instant_overlap) or (start < end):
return MayaInterval(start, end)
def contains(self, i):