Path 1: 12 calls (1.0)
→ other LineSet (12)
↩ return False (10) True (2)
1def __eq__(self, other: Any) -> bool: 2 if not isinstance(other, LineSet): 3 return False 4 return self.__dict__ == other.__dict__