Skip to content

Commit e5d3d97

Browse files
Address AI feedback
Signed-off-by: Lukasz Gryglicki <lgryglicki@cncf.io> Assisted by [OpenAI](https://platform.openai.com/) Assisted by [GitHub Copilot](https://github.com/features/copilot)
1 parent 28ac472 commit e5d3d97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cla-backend/cla/models/github_models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2164,7 +2164,7 @@ def pygithub_graphql(g, query: str, variables: dict | None = None):
21642164
if isinstance(data, dict) and data.get("errors"):
21652165
errs = data["errors"]
21662166
paths = [e.get("path") for e in errs]
2167-
msgs = [e.get("message") for e in errs]
2167+
msgs = [e.get("message") for e in errs]
21682168
cla.log.error(f"GraphQL errors: {msgs} (paths={paths}, all={errs!r})")
21692169
return None
21702170
return data.get("data")

0 commit comments

Comments
 (0)