ez_wsi_dicomweb/slide_level_map.py [1091:1098]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    for dicom_object in dicom_objects:
      if dicom_object.type() != dicom_path.Type.INSTANCE:
        raise ez_wsi_errors.UnexpectedDicomObjectInstanceError(
            'SlideLevelMap expects all input DicomObject to have a type of '
            f'INSTANCE. Actual: {dicom_object.type()}'
        )
      _check_for_tag_or_raise(dicom_object, tags.SOP_CLASS_UID)
      sop_class_uid = dicom_object.get_value(tags.SOP_CLASS_UID)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



ez_wsi_dicomweb/slide_level_map.py [1591:1598]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    for dicom_object in dicom_objects:
      if dicom_object.type() != dicom_path.Type.INSTANCE:
        raise ez_wsi_errors.UnexpectedDicomObjectInstanceError(
            'SlideLevelMap expects all input DicomObject to have a type of '
            f'INSTANCE. Actual: {dicom_object.type()}'
        )
      _check_for_tag_or_raise(dicom_object, tags.SOP_CLASS_UID)
      sop_class_uid = dicom_object.get_value(tags.SOP_CLASS_UID)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



