def __eq__()

in o2a/o2a_libs/src/o2a_lib/property_utils.py [0:0]


    def __eq__(self, other):
        return (
            isinstance(other, PropertySet)
            and self.config == other.config
            and self.job_properties == other.job_properties
            and self.action_node_properties == other.action_node_properties
        )