in message_flow/sagas/orchestration/serialized_saga_data.py [0:0]
def __eq__(self, other: object) -> bool:
return (
isinstance(other, SerializedSagaData)
and self.saga_data_type == other.saga_data_type
and self.saga_data_json == other.saga_data_json
)