Path 1: 679 calls (0.9)

Style (679)

Style def (679)

None (679)

1def __get__(self, obj: "Style", objtype: Type["Style"]) -> Optional[bool]:
2        if obj._set_attributes & self.bit:
3            return obj._attributes & self.bit != 0
4        return None
            

Path 2: 73 calls (0.1)

Style (73)

Style def (73)

True (68) False (5)

1def __get__(self, obj: "Style", objtype: Type["Style"]) -> Optional[bool]:
2        if obj._set_attributes & self.bit:
3            return obj._attributes & self.bit != 0
4        return None