From 6c1cc24ad5450a56c895f640ad2f6ae77bd889e5 Mon Sep 17 00:00:00 2001 From: Christian Stade-Schuldt Date: Fri, 26 May 2017 01:14:59 -0700 Subject: [PATCH] minor --- maya.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maya.py b/maya.py index 6455a2a..4415f84 100644 --- a/maya.py +++ b/maya.py @@ -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):