Path 1: 1 calls (1.0)

Style (1)

True (1)

1def __ne__(self, other: Any) -> bool:
2        if not isinstance(other, Style):
3            return NotImplemented
4        return self.__hash__() != other.__hash__()