Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
VineetBala-AOT authored Sep 20, 2024
1 parent 3667cbf commit 4733ced
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ def get_survey_result(
'value', available_response.c.value,
'count', func.coalesce(survey_response.c.response, 0)))
.label('result'))
.outerjoin(available_response, survey_question.c.key == available_response.c.request_key)
.outerjoin(
available_response, survey_question.c.key == available_response.c.request_key)
.outerjoin(survey_response,
(available_response.c.value == survey_response.c.value) &
(available_response.c.request_key == survey_response.c.request_key),
Expand Down

0 comments on commit 4733ced

Please sign in to comment.