Skip to content

Commit

Permalink
Standardize on single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
cjllanwarne committed Aug 21, 2024
1 parent b6326bd commit f7a3230
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/ci/github.py
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ async def _update_github_review_state(self, gh):
"""

response = await gh.post('/graphql', data={'query': review_state_query})
review_decision = response["data"]["repository"]["pullRequest"]["reviewDecision"]
review_decision = response['data']['repository']['pullRequest']['reviewDecision']

if review_decision == 'APPROVED':
review_state = 'approved'
Expand Down

0 comments on commit f7a3230

Please sign in to comment.