diff --git a/python/brica1/scheduler.py b/python/brica1/scheduler.py index c1d3fc1..eb45830 100644 --- a/python/brica1/scheduler.py +++ b/python/brica1/scheduler.py @@ -161,9 +161,6 @@ def __init__(self, time, component): self.time = time self.component = component - def __cmp__(self, other): - return cmp(self.time, other.time) - def __lt__(self, other): return self.time < other.time;