(path)
| 57 | |
| 58 | |
| 59 | def gh_api(path): |
| 60 | r = subprocess.run(["gh", "api", path], capture_output=True, text=True) |
| 61 | if r.returncode != 0: |
| 62 | return None |
| 63 | return r.stdout |
| 64 | |
| 65 | |
| 66 | def upstream_default_license(repo): |
no outgoing calls
no test coverage detected