From 4dc7f131f34486afa2bc4e87de77677f146b64e2 Mon Sep 17 00:00:00 2001 From: Salvo 'LtWorf' Tomaselli Date: Wed, 19 Aug 2020 08:42:55 +0200 Subject: [PATCH] Only use eq --- relational/rtypes.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/relational/rtypes.py b/relational/rtypes.py index 7108f7b..80b3373 100644 --- a/relational/rtypes.py +++ b/relational/rtypes.py @@ -109,9 +109,6 @@ class Rdate: def __lt__(self, other): return self.intdate < other.intdate - def __ne__(self, other): - return self.intdate != other.intdate - def __sub__(self, other): return (self.intdate - other.intdate).days