(query)
| 225 | print(error['message']) |
| 226 | |
| 227 | def github_query(query): |
| 228 | response = github.query(query, token) |
| 229 | if 'errors' in response: |
| 230 | print(response) |
| 231 | _print_errors(response) |
| 232 | sys.exit(1) |
| 233 | return response["data"] |
| 234 | |
| 235 | def get_project(name): |
| 236 | data = github_query(QUERY_PROJECT_NUMBER % name) |
no test coverage detected