diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2020-05-08 13:47:05 -0400 |
|---|---|---|
| committer | Jordan Wiens <jordan@psifertex.com> | 2020-05-11 12:23:48 -0400 |
| commit | 0812057350b17bddf7539f6622b6e7e2aae283a0 (patch) | |
| tree | f8977dc9178772e3603573fec2cb1ecd847278a8 /python/architecture.py | |
| parent | 626235bed9642d839bcd27b6444af305df96c6f1 (diff) | |
clean up some linter warnings
Diffstat (limited to 'python/architecture.py')
| -rw-r--r-- | python/architecture.py | 5 |
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 |
