diff --git a/genotype_api/services/plate_service/plate_service.py b/genotype_api/services/plate_service/plate_service.py index ff99505..e55045f 100644 --- a/genotype_api/services/plate_service/plate_service.py +++ b/genotype_api/services/plate_service/plate_service.py @@ -122,7 +122,7 @@ def update_plate_sign_off( update_plate_sign_off(session=self.session, plate=plate, plate_sign_off=plate_sign_off) return self._get_plate_response(plate) - def read_plate(self, plate_id: int) -> PlateAnalysesDetailResponse: + def read_plate(self, plate_id: int) -> PlateResponse: plate: Plate = get_plate_by_id(session=self.session, plate_id=plate_id) return self._get_plate_response(plate)