Skip to content
Snippets Groups Projects
Commit f201cf08 authored by benjamin.jakimow@geo.hu-berlin.de's avatar benjamin.jakimow@geo.hu-berlin.de
Browse files

fixed TimeSeriesDatum.__lt__(self, other) for proper sorting

parent 718011cb
No related branches found
No related tags found
No related merge requests found
...@@ -298,6 +298,8 @@ class TimeSeriesDatum(QObject): ...@@ -298,6 +298,8 @@ class TimeSeriesDatum(QObject):
def __lt__(self, other): def __lt__(self, other):
if self.date < other.date: if self.date < other.date:
return True return True
elif self.date > other.date:
return False
else: else:
return self.sensor.id() < other.sensor.id() return self.sensor.id() < other.sensor.id()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment