()
| 71 | return token |
| 72 | |
| 73 | def make_auth_header(): |
| 74 | return {'Authorization': 'token ' + get_auth_token().replace("\n","")} |
| 75 | |
| 76 | def post_issue_comment(project, num, body): |
| 77 | url = f'https://api.github.com/repos/{project}/issues/{num}/comments' |
no test coverage detected
searching dependent graphs…