forked from kenkeiras/org-rw
Add comparison operations to Timestamp.
This commit is contained in:
parent
af1e5e6f3d
commit
fdc475cb19
@ -568,6 +568,16 @@ class Timestamp:
|
|||||||
and (self.repetition == other.repetition)
|
and (self.repetition == other.repetition)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
def __lt__(self, other):
|
||||||
|
if not isinstance(other, Timestamp):
|
||||||
|
return False
|
||||||
|
return self.to_datetime() < other.to_datetime()
|
||||||
|
|
||||||
|
def __gt__(self, other):
|
||||||
|
if not isinstance(other, Timestamp):
|
||||||
|
return False
|
||||||
|
return self.to_datetime() > other.to_datetime()
|
||||||
|
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
return timestamp_to_string(self)
|
return timestamp_to_string(self)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user