From 0812057350b17bddf7539f6622b6e7e2aae283a0 Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Fri, 8 May 2020 13:47:05 -0400 Subject: clean up some linter warnings --- python/architecture.py | 5 ----- 1 file changed, 5 deletions(-) (limited to 'python/architecture.py') 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 -- cgit v1.3.1