mirror of
https://github.com/github/codeql.git
synced 2025-12-25 05:06:34 +01:00
6 lines
141 B
Python
6 lines
141 B
Python
class IncompleteOrdering(object):
|
|
def __init__(self, i):
|
|
self.i = i
|
|
|
|
def __lt__(self, other):
|
|
return self.i < other.i |