summaryrefslogtreecommitdiff
path: root/python/architecture.py
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2020-05-08 13:47:05 -0400
committerJordan Wiens <jordan@psifertex.com>2020-05-11 12:23:48 -0400
commit0812057350b17bddf7539f6622b6e7e2aae283a0 (patch)
treef8977dc9178772e3603573fec2cb1ecd847278a8 /python/architecture.py
parent626235bed9642d839bcd27b6444af305df96c6f1 (diff)
clean up some linter warnings
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