Skip to content

Commit

Permalink
remove non existing model hint
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrOertlin committed Mar 22, 2024
1 parent 1d81f27 commit 1fde28b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion genotype_api/services/plate_service/plate_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 1fde28b

Please sign in to comment.