Skip to content

Commit

Permalink
fix issue_assignee_query and pr_assignee_query
Browse files Browse the repository at this point in the history
Signed-off-by: James Kunstle <[email protected]>
  • Loading branch information
JamesKunstle committed Oct 2, 2023
1 parent ad0d732 commit 5f9d402
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions 8Knot/queries/issue_assignee_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ def issue_assignee_query(self, repos):
SELECT
*
FROM
explorer_issue_assignments
explorer_issue_assignments ia
WHERE
repo_id in ({str(repos)[1:-1]})
ia.id in ({str(repos)[1:-1]})
"""

try:
Expand Down
4 changes: 2 additions & 2 deletions 8Knot/queries/pr_assignee_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ def pr_assignee_query(self, repos):
SELECT
*
FROM
explorer_pr_assignments
explorer_pr_assignments pa
WHERE
repo_id in ({str(repos)[1:-1]})
pa.id in ({str(repos)[1:-1]})
"""

try:
Expand Down

0 comments on commit 5f9d402

Please sign in to comment.