Skip to content

Commit

Permalink
Removed comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ratheesh-aot committed Mar 20, 2024
1 parent dcfac42 commit 7e2a411
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion met-api/src/met_api/services/poll_response_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def get_poll_details_with_response_counts(poll_id):
)
.select_from(PollAnswer)
.outerjoin(PollResponseModel, PollAnswer.id == PollResponseModel.selected_answer_id)
.filter(PollAnswer.poll_id == poll_id) # Make sure this is the correct filter condition
.filter(PollAnswer.poll_id == poll_id)
.group_by(PollAnswer.id, PollAnswer.answer_text)
.all()
)
Expand Down

0 comments on commit 7e2a411

Please sign in to comment.