summaryrefslogtreecommitdiff
path: root/python/architecture.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/architecture.py')
-rw-r--r--python/architecture.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/python/architecture.py b/python/architecture.py
index 8495255c..014de6ad 100644
--- a/python/architecture.py
+++ b/python/architecture.py
@@ -2765,11 +2765,6 @@ class ReferenceSource(object):
return NotImplemented
return self.address > other.address
- def __gt__(self, other):
- if not isinstance(other, self.__class__):
- return NotImplemented
- return self.address >= other.address
-
def __le__(self, other):
if not isinstance(other, self.__class__):
return NotImplemented