Skip to content

Commit 0a180ea

Browse files
authored
Fix typo in Run.__ge__ comparison (#500)
1 parent fe51fe0 commit 0a180ea

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

GeoHealthCheck/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def __gt__(self, other):
108108
return self.identifier > other.identifier
109109

110110
def __ge__(self, other):
111-
return self.identifief >= other.identifier
111+
return self.identifier >= other.identifier
112112

113113
def __hash__(self):
114114
return hash(f"{self.identifier}{self.checked_datetime}{self.resource}")

0 commit comments

Comments
 (0)