def __eq__()

in content_api.py [0:0]


  def __eq__(self, other: 'ProcessorPart') -> bool:
    return (
        self._part == other._part
        and self._role.lower() == other._role.lower()
        and self._substream_name.lower() == other._substream_name.lower()
        and self._metadata == other._metadata
    )