Skip to content

Commit 2353d9c

Browse files
Merge pull request #199 from Code4GovTech/dev
print statements added for debugging
2 parents 37095e7 + d3f26d5 commit 2353d9c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

handlers/pull_request_handler.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ async def get_issue_data(self, owner, repo, issue_number):
3030
owner=owner, repo=repo, issue_number=issue_number)
3131
async with httpx.AsyncClient() as client:
3232
issue_response = await client.get(description_url, headers=headers)
33+
print('issue response inside get issue id for pr is ', issue_response)
3334
if issue_response.status_code == 200:
3435

3536
issue_details = issue_response.json()

0 commit comments

Comments
 (0)