Source code for titan_pylib.my_class.supports_less_than 1from typing import Protocol 2 3 [docs] 4class SupportsLessThan(Protocol): 5 6 def __lt__(self, other) -> bool: ...