Skip to content

Commit

Permalink
remove appending analyses
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrOertlin committed Apr 12, 2024
1 parent ba9b2c1 commit b714784
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion genotype_api/services/endpoint_services/plate_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ def upload_plate(self, file: UploadFile) -> None:
plate_obj.analyses = analyses
for analysis in analyses:
sample: Sample = self.store.get_sample_by_id(sample_id=analysis.sample_id)
sample.analyses.append(analysis)
self.store.refresh_sample_status(sample=sample)
self.store.refresh_plate(plate=plate)
except Exception as error:
Expand Down

0 comments on commit b714784

Please sign in to comment.