def __eq__()

in content_api.py [0:0]


  def __eq__(self, other: 'ProcessorContent') -> bool:
    try:
      for lhs, rhs in zip(self, other, strict=True):
        if lhs != rhs:
          return False
      return True
    except AttributeError:
      return False
    except ValueError:
      return False