Skip to content

Commit

Permalink
fix: missing parentheses in query
Browse files Browse the repository at this point in the history
  • Loading branch information
ahdamin committed Oct 11, 2024
1 parent aebc195 commit e356387
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion genotype_api/database/crud/read.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ async def get_plate_by_id(self, plate_id: int) -> Plate:
return await self.fetch_first_row(filtered_query)

async def get_plate_by_plate_id(self, plate_id: str) -> Plate:
plates: Query = self._get_plate_with_analyses
plates: Query = self._get_plate_with_analyses()
filtered_query = filter_plates_by_plate_id(plate_id=plate_id, plates=plates)
return await self.fetch_first_row(filtered_query)

Expand Down

0 comments on commit e356387

Please sign in to comment.