def __eq__()

in ez_wsi_dicomweb/ml_toolkit/dicom_path.py [0:0]


  def __eq__(self, other: Any) -> bool:
    if isinstance(other, Path):
      return self.complete_url == other.complete_url
    if isinstance(other, str):
      return self.complete_url == other
    return False