From eee17021fb41edceb197afd26ba4bbc9607c7e6e Mon Sep 17 00:00:00 2001 From: Chris Llanwarne Date: Wed, 21 Aug 2024 13:35:08 -0400 Subject: [PATCH] Standardize on single quotes --- ci/ci/github.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/ci/github.py b/ci/ci/github.py index 26028874df4..bd8375bc9c9 100644 --- a/ci/ci/github.py +++ b/ci/ci/github.py @@ -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'